比如我们需要关闭httpd进程,使用以下指令即可完成。

ps -ef|grep  'httpd'|grep  -v 'grep'|awk '{print$2}'|xargs kill -9

查询进程并杀死_linux