搜索 php 所有进程 并杀进程

搜索进程并且kill

ps -ef | grep 'php' | sort -k 2 | awk '{print $2}' | xargs kill -9

你可能感兴趣的:(搜索 php 所有进程 并杀进程)