#!/bin/bash
while true
do
procnum=` ps -ef|grep "syndata"|grep -v grep|wc -l`
if [ $procnum -eq 0 ]; then
/app/java/syndata &
fi
sleep 300
done
保存:monitor.sh
启动监护脚本:/app/java/monitor.sh &
开机启动:使用命令 vi /etc/rc.local 在文件末尾添加这一行 /app/java/monitor.sh &