linux - kill命令如何一次杀死多个进程
PHP中文网
PHP中文网 2017-04-17 15:59:38
0
3
2521

kill -9 25718
kill -9 25719
kill -9 25811
kill -9 25812

PHP中文网
PHP中文网

认证0级讲师

reply all(3)
Ty80

kill -9 25718 25719 25811 25812 just queue at the back

迷茫
killall nginx
Ty80
ps aux|grep php|grep -v grep|awk '{print }'|xargs kill -9

If there are slashes in the process, they can be escaped

ps aux|grep task\/crond|grep -v grep|awk '{print }'|xargs kill -9
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!