码迷,mamicode.com
首页 > 其他好文 > 详细

批量kill进程

时间:2014-08-20 21:03:12      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   ar   2014   div   

最近做项目,要一下子开启50个进程,一个个去kill效率很低,利用下面这条指令就很快了:

1 ps -ef|grep Timer|grep -v grep|cut -c 9-15|xargs kill -9

 

ps -ef|grep name,选取所有带name的进程

grep -v grep,去除结果中带grep的进程

cut -c 9-15,取第9~15个字符,也就是pid

xargs kill -9,xargs把前面的输入当做kill -9之后的参数

我们可以做一个实验:

启动11个进程:

1 #!/bin/bash
2 i=0
3 while [[ $i -le 10 ]]
4 do
5     ./test  &
6     i=$(( $i + 1 ))
7 done

bubuko.com,布布扣

然后利用介绍的指令可以一次全kill。

bubuko.com,布布扣

 

批量kill进程,布布扣,bubuko.com

批量kill进程

标签:style   blog   http   color   strong   ar   2014   div   

原文地址:http://www.cnblogs.com/dy-techblog/p/3925438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!