expect脚本中杀进程

expect脚本中杀进程

本文仅做个人遇到问题的记录:

send "ps -ef|grep java|grep $module|awk '{ print \$2 }'|xargs kill -9\n"

或者

send "ps -ef|grep tomcat|grep -v grep |awk '{ print \$2 }'|xargs kill -9\n"

记录一下。

你可能感兴趣的:(python,git,开发语言,linux)