ps -ef | grep module- | grep -v module-mxm | cut -c 9-15 | xargs kill -9
ps -aux |egrep "(analysis.jar|comm.jar|xpush.jar|customer.jar|track.jar|manage.jar|org.jar|product.jar|program.jar|xschedule.jar|xim.jar)" | cut -c 9-15 | xargs kill -9
ps -A | grep module- | cut -c 1-5 | xargs kill -9
ps -ef | grep module-
查找关键字包含module-的所有进程
grep -v module-mxm
排除module-mxm的进程
cut -c 9-15
截取第9至15字符(进程id)
xargs kill -9
将截取的9-15字符(进程id)作为kill -9 后的参数。