4 lines
199 B
Bash
4 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
|