判斷網站URL是否正常訪問腳本

#!/bin/bash

[ -f /etc/init.d/functions ] && . /etc/init.d/functions

function usage(){
    echo "USAGE:$0 url"
    exit 1
}

RETVAL=0
function CheckUrl(){
    wget -T 10 --spider -t 2 $1 &>/dev/null
    RETVAL=$?
    if [ $RETVAL -eq 0 ];then
        action "$1 url" /bin/true
    else
        action "$1 url" /bin/false
    fi
    return $RETVAL
}

function main(){
    if [ $# -ne 1 ];then
        usage
    fi
    CheckUrl $1
}

main $*
相關文章
相關標籤/搜索