linux根据进程关键搜索字批量结束进程(替换xxxxxx为自己想要查的关键字进程)
ps -ef|grep xxxxxx|grep -v grep|awk '{print "kill -9 " $2}' |sh