5 lines
199 B
Bash
5 lines
199 B
Bash
![]() |
#!/usr/bin/env sh
|
||
|
|
||
|
# https://www.linkedin.com/pulse/how-identify-kill-zombiedefunct-processes-linux-without-george-gabra/
|
||
|
ps -A -ostat,ppid | grep -e '[zZ]' | awk '{ print $2 }' | uniq | xargs ps -p
|