Quote:
Originally Posted by buffoonix
Most ps implementations show it as <defunct>.
So you could simply Code:
$ ps -ef | grep defunct
With Linux ps you can also go after the state like such, provided there are any zombies
which well behaved programs simply don't produce
Code:
$ ps -e -o pid= -o state=|awk '$2=="Z"{print$1}'|tr \\040 ,|xargs ps -fp
|
Thank you very much that helps a ton I will use these and see what I come up with.
Michael