ps -A -o stat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print $2}' | xargs -i kill -9 {}
说白了,其实是查看它的父进程id,然后干掉。