shell判断web服务期是否正常
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell判断web服务期是否正常相关的知识,希望对你有一定的参考价值。
#如下,对一个网页进行简单的判断,看是否正常 #!/bin/bash fail=0 #success=0 while(( fail <=2 )) do wget --timeout=5 --tries=1 http://oldboy.blog.51cto.com -q -O /dev/null #timeout定义超时时间 --tries定义尝试次数 a=$? if [ $a -ne 0 ] then let fail=fail+1 else echo "success" exit 0 fi done echo "this is a fail adress"
以上是关于shell判断web服务期是否正常的主要内容,如果未能解决你的问题,请参考以下文章
Shell脚本根据Hash值判断web服务器页面是不是被更改