in bash I need to get the pid of a running process whose I know name and parent pid.
In ps' manual I read you can select processes using such arguments:

--ppid <pidlist>

and

-C <cmdlist>

So, in order to get the pid of running "myscript.sh" child of $parentpid, I tried:

ps -C myscript.sh --ppid $parentpid -o pid --no-headers

but I got all the children processes of $parentpid. The -C argument seems to be ignored also if I swap it with the other one.

Any help, expecially avoiding sed and grep and the like? Thank you!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Give this a try:

pgrep -P $parentpid '^myscript.sh$'

Also see Process Management.

link|improve this answer
Chapeau. This is exactly what I need. – etuardu Feb 1 '11 at 15:49
feedback

Your Answer

 
or
required, but never shown

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