shell 监控url 地址

前端之家收集整理的这篇文章主要介绍了shell 监控url 地址前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

shell 监控url 地址

[root@localhost opt]# cat web_url.sh 
#!/bin/bash
for i in `cat web_url`
do
curl=`curl -I -s $i |head -1|cut -d " " -f2`
if [ "$curl" == "200" ];then
    echo curl $i is ok
else
    echo "$i is fail" | mail -s "web fail url"  yunwei@jiduo365.com
fi
done

[root@localhost opt]# cat web_url
http://192.168.0.123:8080/lemon/portal/index.do
http://192.168.0.123:8080/photo/
原文链接:https://www.f2er.com/bash/387417.html

猜你在找的Bash相关文章