How to kill all processes matching a name?

后端 未结 11 1515
不思量自难忘°
不思量自难忘° 2020-11-29 14:53

Say I want to kill every process containing the word amarok. I can print out the commands I want to execute. But how do I actually make the shell execute them. ie.



        
11条回答
  •  [愿得一人]
    2020-11-29 15:19

    If you want to execute the output of a command, you can put it inside $(...), however for your specific task take a look at the killall and pkill commands.

提交回复
热议问题