标签:sof str linux rgs 16px shell脚本 images ges ros
ps -ef | grep procedure_name | grep -v grep | awk ‘{print $2}‘ | xargs kill -9
#!/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
标签:sof str linux rgs 16px shell脚本 images ges ros
原文地址:http://www.cnblogs.com/Archmage/p/7570653.html