Linux下杀掉根据进程名批量杀进程
kill -KILL `ps aux | grep httpd| awk '{print $1}'`
ps aux | grep httpd| awk '{print $1}'