shell判断指定网站是否正常

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell判断指定网站是否正常相关的知识,希望对你有一定的参考价值。

#!/bin/sh


[ -e /etc/init.d/functions ]&& . /etc/init.d/functions || exit 0

if [ $? -eq 0 ];then

   for i in $(seq 1 1 255)

    do  

     IP="172.20.100." 

     ping -c 1 $IP$i &>/dev/null

     if [ $? -eq 0 ];then

       action "ping $IP$i ok!" /bin/true &>>pingOK.txt

       echo "#########################################" &>>pingOK.txt

     else 

       action "ping $IP$i error!" /bin/false &>>pingERROR.txt

       echo "#########################################" &>>pingERROR.txt

     fi

     echo "ping ip:172.20.100.1-255 ok!"

   done

else

   echo "reload /etc/init.d/functions file error!"

fi


以上是关于shell判断指定网站是否正常的主要内容,如果未能解决你的问题,请参考以下文章

shell实例-判断apache是否正常启动

linux 使用多线程 批量测试网站是否正常shell

shell编程

shell判断

shell 判断脚本执行是否成功 if [ $? -ne 0 ]

shell习题-22