1.最近在研究线程时,发现在linux下开启10个以上线程,一个一个去kill就很麻烦
百度了一下
2.发现可以用awk命令组合进行匹配关键字,然后kill进程
https://www.cnblogs.com/wenBlog/p/10338115.html
root@localhost:~# ps -ef|grep startscan|grep -v grep|awk '{print "kill -9 " $2}'
root@localhost:~# ps -ef|grep startscan|grep -v grep|awk '{print "kill -9 " $2}' | sh
加上sh命令执行,批量关闭子进程,完美。