linux下根据命令名杀死某进程的shell命令
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 'py...
·
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
进程。
更多推荐
已为社区贡献1条内容
所有评论(0)