标签:style ar sp on ef as app ca br
#!/bin/bash
while [ 1 ]
do
SendMail_is_exstit=$(ps -ef | grep "feed SendMail" | grep -v grep | wc -l)
if [ ${SendMail_is_exstit} == 0 ]
then
cd /var/www/sdkfeed/
./app/Console/cake SendMail
fi
sleep 60
done
shell 监控判断进程是否存在,如果不存在就重新启动脚本。
标签:style ar sp on ef as app ca br
原文地址:http://my.oschina.net/u/1270458/blog/349133