利用wget检测网页是否正常访问


#!/bin/bash

function CheckUrl() {
timeout=5
fails=0
success=0
while true
    do
        wget --timeout=5 --tries=1 https://www.google.com -q -O /dev/null
        #use wget to CheckUrl can be used 
        if [ $? -ne 0 ]
            then
                let fails=fails+1
        else
                let success=success+1
        fi
        if [ $success -gt 1 ];then
            echo "Success"
            exit 0
        fi
        if [ $fails -gt 0 ];then
            echo "Failed"
            exit 1
        fi
    done
}
CheckUrl


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM