批量杀死特定进程

例如要杀死phantomjs的父进程为1的进程。
ps -ef |grep phantomjs| awk ‘$3==1 {print $2}’ | xargs kill -9

使用时,可以拆解上述命令,观察其最终删除了那些进程,如下。
1.ps -ef |grep phantomjs
2.ps -ef |grep phantomjs| awk ‘$3==1 {print $2}’