您的位置:首页 > 运维架构 > Linux

linux kill all proccess

2013-10-30 08:42 357 查看
$ ps -ef | grep PROCESS | grep -v grep | awk '{print $2}'

prints the PID in the output of processes which contains PROCESS in their name.

$ kill -9 `ps -ef | grep oraxpo | grep -v grep | awk '{print $2}'`

to kill them
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: