ps -aux | grep 'process_command_keyword' | awk '{{print $2}}' | xargs kill -9

 

process_command_keyword替换成需要杀死的启动进程的命令名即可。
例如你使用python启动了一个python脚本,python test_process.py args, 使用
ps -aux | grep 'python test_process.py' | awk '{{print $2}}' | xargs kill -9
就可以杀死所有的包含python test_process.py进程。

 

 

Logo

更多推荐