041_查找 Linux 系统中的僵尸进程时间:2023-03-09 04:42:28 #!/bin/bash#awk 判断 ps 命令输出的第 8 列为 Z 是僵尸进程,显示该进程的 PID 和进程命令 ps aux |awk '{if($8 == "Z"){print $2,$11} }'