There are options with ps itself for better filter options, than may be doing it with grep, worth a try.
$ ps -LF -u user
There are options with ps itself for better filter options, than may be doing it with grep, worth a try.
$ ps -LF -u user
find the zombie processes.
ps aux | awk ‘$8 == “Z” { print }’