Shell 脚本监控java进程
# ps -ef|grep tomcat_community|grep -v 'grep'|awk '{print $2}' # 这里的-f参数判断$myFile是否存在 pidfile=java.pidif [ ! -f "$pidfile" ]; then touch ${pidfile}; echo "$pidfile new cre...