LINUX批量杀进程

kill `ps -ef|grep 进程名 | grep -v grep|awk '{print $2}'` 

例如:

kill `ps -ef | grep /etc/pam.d/su |grep -v grep |awk '{print $2}'`

你可能感兴趣的:(linux,kill,awk,批量杀进程)