您的位置:首页 > 其它

kill process

2015-10-29 20:09 441 查看

结束进程

结论:pkill process_name.

其他: kill ‘pgrep process_name’

其中process_name 可以不完全.

其他:

$ ps -ef

$ ps -aux
$ ps -ef | grep firefox
$ pgrep firefox
1827
$kill -s 9 1827
$ pgrep firefox | xargs kill -s 9
$kill -s 9 `pgrep firefox`
$pkill -9 firefox
$killall -9 firefox
  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  kill process