首页 > 代码库 > 常用shell脚本

常用shell脚本

#!/bin/bash      # 检查192.168.1.1—192.168.1.254 主机是否存活

for ip in 192.168.1.{1..254};

 do 

if ping -c 1 $ip >/dev/null; then

    echo "$ip OK." 

else 

   echo "$ip NO!" 

    fi 

done




#!/bin/bash         #检查多个域名是否可以访问

 URL="www.baidu.com www.sina.com www.jd.com"

for url in $URL; do 

   HTTP_CODE=$(curl -o /dev/null -s -w %{http_code} http://$url)

if [ $HTTP_CODE -eq 200 -o $HTTP_CODE -eq 301 ]; then

   echo "$url OK." 

else 

   echo "$url NO!"

    fi

 done



本文出自 “飞天小妖” 博客,请务必保留此出处http://065432.blog.51cto.com/3079397/1940815

常用shell脚本