Using ksh I was able to list the PID of jobs that start with
Scan*...ex..
for i in `ps -ef|grep Scan*|grep -v grep|tr -s ' ' |cut -d ' ' -f 3`;do
echo " $i Active"
done
Now I want the list to include the job name and its
parameters...
Will appreciate any help...
jmanj
Scan*...ex..
for i in `ps -ef|grep Scan*|grep -v grep|tr -s ' ' |cut -d ' ' -f 3`;do
echo " $i Active"
done
Now I want the list to include the job name and its
parameters...
Will appreciate any help...
jmanj