Linux杀死所有相关进程

Posted by dony on April 26, 2019

在使用linux的时候有时候会遇到需要查看杀死所有相关进程的情况

查看所有带jupyter的相关进程

ps -ef | grep jupyter

杀死所有带jupyter的相关进程·

 ps -ef | grep jupyter | cut -c 9-15| xargs kill -s 9

其中jupyter可以替换成需要的关键字,比如python