Linux批量杀掉进程 2018-10-30 服务器 暂无评论 ps aux | grep XXX | grep -v grep | awk '{print $2}' | xargs kill -9其中XXX是进程包含的字符串 - 阅读全文 -