【Linux】批量结束某一脚本的进程

ps -ef | grep **.sh |grep -v grep | awk '{print $2}' | xargs kill -9
原文地址:https://www.cnblogs.com/jxd283465/p/11651896.html