码迷,mamicode.com
首页 > Web开发 > 详细

网站监测脚本

时间:2018-07-01 16:58:11      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:执行   main   pre   blog   amp   127.0.0.1   ++   网站   .com   

#!/bin/bash
#Author Template
#Time 2018-07-01 16:00
url_list=(
http://www.cnblogs.com/Template/
http://www.baidu.com
http://127.0.0.1
)

. /etc/init.d/functions
function wait(){

    echo -n "3 秒后执行检查."
    for ((i=0;i<3;i++))
    do
        echo -n "." ;sleep 1
    done
    echo
}


function check_url(){
    wait
    for ((i=0;i<`echo ${#url_list[*]}`;i++))
    do
        wget -o /dev/null -T 3 --tries=1 --spider ${url_list[$i]} &> /dev/null
        if [ $? -eq 0 ];then
            action "${url_list[$i]}" /bin/true
        else
            action "${url_list[$i]}" /bin/false

        fi
        ((check_count++))
    done
    }

main(){
    while true
    do
        check_url
        echo "------------check count:${check_count}------------------"
        sleep 10
    done

}
main

 

网站监测脚本

标签:执行   main   pre   blog   amp   127.0.0.1   ++   网站   .com   

原文地址:https://www.cnblogs.com/Template/p/9250386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!