Linux下kill所有tomcat进程

linux下kill所有tomcat进程
ps -ef|grep tomcat|grep -v grep|awk '{print $2}'|xargs kill -9

你可能感兴趣的:(Linux下kill所有tomcat进程)