分享一个for循环+case的脚本(监控程序状态并执行相关操作) ,供大家学习参考。
if [ $count -eq 0 ]; then
case $myhost in
nginx)
cd /usr/local/webserver/nginx/sbin/
./nginx
echo "nginx has be down"
sleep 5
;;
mysql)
/etc/init.d/mysqld start
echo "mysql has be down"
;;
*)
echo "what‘s the hell?"
;;
esac
fi
done
set +x