显示httpd进程的pid
#ps -C httpd -o pid=
杀死所有httpd进程
#for pid in $(ps -C httpd -o pid=);do kill -9 $pid;done