7 lines
193 B
Bash
Executable File
7 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
# zombies - list all zombies and their parents to kill
|
|
|
|
ps f -eo state,pid,ppid,comm | awk '
|
|
{ cmds[$2] = $NF }
|
|
/^Z/ { print $(NF-1) "/" $2 " zombie child of " cmds[$3] "/" $3 }'
|