如何用linux组合指令查找某个进程并杀死

2025-02-24 15:00:29
推荐回答(1个)
回答1:

ps -ef | grep procname | grep -v grep | awk '{ print "kill -9 " $1 }' | sh