Linux-如何根据进程名称强杀进程

ps -ef|grep "匹配的名字" |grep -v "grep" |awk '{print $2}' |xargs kill -9

你可能感兴趣的:(Linux-如何根据进程名称强杀进程)