判断某网站是否over

#!/bin/bash
#自动检测网站是否宕掉
while true
do
URL=http://store.kingdee.com
RETURN=`curl -o /dev/null -s -w "%{http_code}" "${URL}"`
if [ $RETURN != '200' ];then
/data/sh/fastcgi_restart
fi
sleep 12
done

本文出自 “风云的博客” 博客,谢绝转载!

你可能感兴趣的:(职场,curl,休闲)