linux kill是用来终止进程的命令。通过发送不同的信号到相应的进程。
kill命令参数:
ps -ef | grep chrome
pgrep chrome
pidof chrome
#强制终止进程
kill -s 9 pid
#xargs表示用前面命令输出结果作为kill -s 9参数
pgrep chrome | xargs kill -s 9
#命令执行结果作为参数
kill -s 9 `pgrep chrome`
#pkill=pgrep+kill 这里无需参数s
pkill -9 chrome
#杀死同一进程组内所有进程,指定进程名即可
killall httpd