linux 批量删掉进程

批量杀掉进程的的命令:

ps uax | grep process_cut_word | grep -v grep | cut -c 9-15 | xargs kill -9

查看带有‘process_cut_word’进程名,并去掉'grep'进程,然后去第9到15位置的字符,并使用'xargs'命令将进程号变成一行,最后使用'kill -9'杀掉进程。

xargs命令的可以将管道或标准输入(stdin)数据转换成命令行参数,也能够从文件的输出中读取数据。

xargs 默认的命令是 echo,这意味着通过管道传递给 xargs 的输入将会包含换行和空白,通过 xargs 的处理之后,换行和空白将被空格取代。

有一下文件

# cat test.txt

a b c d e f g
h i j k l m n
o p q
r s t
u v w x y z

多行变成一行

# cat test.txt | xargs
a b c d e f g h i j k l m n o p q r s t u v w x y z

-n 选项多行输出:

cat test.txt | xargs -n6
a b c d e f
g h i j k l
m n o p q r
s t u v w x
y z

 

 

 

你可能感兴趣的:(kill进程)