View Single Post
Old 08-19-2004, 05:15 AM   #9 (permalink)
roboshark
Crazy
 
use a script like this:

#!/bin/sh

proc=${1}
if [ -z ${proc} ]; then
echo "usage: $0 process_name";
exit 1;
fi
ps ax | awk "\$5 ~ /$proc/ { print \$0 }"

Alternatively, use "print \$1" instead of the final "print \$0" to print only the actual PID.

Last edited by roboshark; 08-19-2004 at 07:47 AM..
roboshark is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43