Trouver Zombie Process Pid dans Linux

## this neat 1 liner can help show you the PID's for zombie processes
ps aux | awk '"[Zz]" ~ $8 { printf("%s, PID = %d\n", $8, $2); }'
CoderHomie