On 25/11/05, Mark Belanger <mark_belanger@xxxxxxx> wrote: > Mark Belanger wrote: > > Sam Drinkard wrote: > > > > > > > After the process starts, strace it: > > > Correction: > strace -p `ps -ef |grep YourProc |grep -v grep | awk '{print $2}'` 'course, you can always do... strace -p `ps -ef |grep [Y]ourProc | awk '{print $2}'` ... if we're being perfectionist. :) Will.