Yaniv Orenstein wrote:
>
> how would it be possible to determine which ps id the next program will
> take, for example if i'm loading pppd and i'd like to know what psid
> will or has pppd taken?
Just
ps -aux | grep pppd | grep -v grep | awk '{ print $2 }'
and smile ;)
Gaal