批量杀死进程的脚本

ps -ef| grep "/work/stat/read/search/sphinx/book_search_content.sh"|awk '{print $2}'|while read pid; do kill -9 $pid; done
原文地址:https://www.cnblogs.com/code-style/p/3507553.html