Linux Shell脚本实现根据进程名杀死进程

Posted kcxg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Shell脚本实现根据进程名杀死进程相关的知识,希望对你有一定的参考价值。

 

 Shell脚本源码如下:

#!/bin/sh
#根据进程名杀死进程
if [ $# -lt 1 ]
then
  echo "缺少参数:procedure_name"
  exit 1
fi
 
PROCESS=`ps -ef|grep $1|grep -v grep|grep -v PPID|awk ‘ print $2‘`
for i in $PROCESS
do
  echo "Kill the $1 process [ $i ]"
  kill -9 $i
done

效果截图:
                                         技术图片

如果觉得上边的代码忒复杂,可以直接使用下面的一句来实现。

ps -ef | grep procedure_name | grep -v grep | awk ‘print $2‘ | xargs kill -9

以上是关于Linux Shell脚本实现根据进程名杀死进程的主要内容,如果未能解决你的问题,请参考以下文章

linux根据进程名字杀死进程

Linux Shell自动拉起进程

linux下 用啥命令查看进程?如何杀死进程?

shell习题第24题:杀进程

linux杀死进程怎么一下子全部杀死

linux中如何根据PID获得进程?