+
80
-

linux如何根据进程名来杀死进程?

请问linux如何根据进程名来杀死进程?

网友回复

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

我知道答案,我要回答