3 Linux根据进程名杀死进程
zouap edited this page 2 years ago

ps -ef | grep processname | grep -v grep | awk '{print $2}' | xargs kill -9