码迷,mamicode.com
首页 > 系统相关 > 详细

批量检查多个网址是否正常(shell编程)

时间:2017-07-01 13:48:29      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:http   shel   while   trie   cti   div   using   array   amp   

#!/bin/bash
#version 1.1
#by zengj
#using checking urls

. /etc/init.d/functions
 checkurl() {
     wget -o /dev/null -T 3 --tries 1 --spider $1 > /dev/null 2>&1
       if [ $? -eq 0 ]
         then
            action "this $1 is true" /bin/true
         else
            action "this $1 is bad" /bin/false
       fi
}
 wait() {
     for((i=0;i<3;i++))
      do
        if [ $i -eq 2 ]
         then
           echo "."
         else
           echo -n "."
           sleep 2
        fi
      done
}
  main(){
    array=(http://blog.oldboydu.com
           http://blog.etiantian.org
           http://oldboy.blog.51cto.com
           http://10.0.0.7
           http://www.baidu.com
)
    while(true)
    do
     echo "------this NO.$((++num)) checkurling------"
     for url in ${array[*]}
       do
         wait
         checkurl $url
       done
         sleep 10
      echo " "
    done
}
main

  

批量检查多个网址是否正常(shell编程)

标签:http   shel   while   trie   cti   div   using   array   amp   

原文地址:http://www.cnblogs.com/zengjieboke/p/7101996.html

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