This question already has answers here:
How to kill all processes with a given partial name? [closed]
(14个回答)
2年前关闭。
由于ssh'到各种服务器,我整天累积了很多“ ssh-agent -s”。这是我来自
我是否可以使用命令“ ssh-agent -s”杀死所有进程?
(14个回答)
2年前关闭。
由于ssh'到各种服务器,我整天累积了很多“ ssh-agent -s”。这是我来自
ps aux
的输出:我是否可以使用命令“ ssh-agent -s”杀死所有进程?
最佳答案
尝试这个
ps aux | grep 'ssh-agent -s' | awk '{print $2'} | xargs kill -9
关于linux - 通过命令杀死所有进程,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50359148/
10-10 17:43