Hello,
This is part of a script from SCO that will not work on AIX any ideas as to why?
cat /tmp/hung_pids | while read line
do
awk '{
if ( $3 == "1" && $6 >= "ttyp0" )
{
{ print $2 } ;
}
if ( $8 == "<defunct>" )
{
{ print $2 } ;
}
}' >> /tmp/hung_pids.kill
done
We deliberately knocked a person out but it will not pick it up. I have more info if needed.
Thanks Scott
This is part of a script from SCO that will not work on AIX any ideas as to why?
cat /tmp/hung_pids | while read line
do
awk '{
if ( $3 == "1" && $6 >= "ttyp0" )
{
{ print $2 } ;
}
if ( $8 == "<defunct>" )
{
{ print $2 } ;
}
}' >> /tmp/hung_pids.kill
done
We deliberately knocked a person out but it will not pick it up. I have more info if needed.
Thanks Scott