Linux 下批量结束一批进程

2018-07-03  本文已影响0人  lihao_李浩

命令:ps -aux | grep shelltest/test.js | grep -v grep 筛选出符合条件的进程

image.png

运行命令:ps -aux | grep shelltest/test.js | grep -v grep | awk '{print $2}' | xargs kill -9结束进程

image.png
上一篇 下一篇

猜你喜欢

热点阅读