Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

find zombie process PID in linux

## this neat 1 liner can help show you the PID's for zombie processes
ps aux | awk '"[Zz]" ~ $8 { printf("%s, PID = %d
", $8, $2); }'
 
PREVIOUS NEXT
Tagged: #find #zombie #process #PID #linux
ADD COMMENT
Topic
Name
2+2 =