I would like to create a bash alias that gives me the process tree from the current bash session I am using, up to init.

The use case is to know whether I have used bash or vi's :shell command.

I am using MacOS X. I have heard about pstree, but it seems to only show children, not the relationship between init and the current process.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I am sure with a a bit of google search, you can find how to get and download pstree for the Mac. However, you can do a poor man's version, using ps and ppid.

eg

ps -eo ppid,pid,cmd | awk '{p[$1]=p[$1]","$3}END{ for(i in p) print i, p[i]}'
link|improve this answer
Maybe I am wrong, but it seems that pstree, along with you poor man's version, only shows the children of a process. Note that I couldn't properly use your version, since the Mac's ps is quite poor and does not support cmd. I would like to see the relationship between init and the current process. Any guess? – Thaddee Tyl Aug 21 '11 at 15:06
It seems that OS X is using comm instead of cmd in the ps command. – Thaddee Tyl Aug 21 '11 at 15:22
the poor man's version just gets all the parent process and their children together. That's all. – ghostdog74 Aug 21 '11 at 15:25
feedback

I don't have the whole answer that you're looking for, but I've got an idea that might move you in the right direction. The command

declare -A parent

will create an associative array (a hash, if you speak Perl)

You will need some command that will give you name-value pairs for PID and PPID... my guess is that the mac's ps command can be made to do this if you torture it enough. I'm going to use 'ps -eo' as above, but you'll want to fill in the blanks.

Then you can do something like this:

ps -eo pid,ppid | while read pid ppid
do   
   parent[$pid]=$ppid   
   echo "pid: $pid ppid: ${parent[$pid]} grandppid: ${parent[${parent[$pid]}]}"
done

I was having trouble making the values of $parent persist outside of my while loop, otherwise I would have created a second for loop to traverse from $$ back to init. I'll leave that as an exercise to the reader.

link|improve this answer
feedback

If you use a package manager like MacPorts you can easily install pstree.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.