1. 程式人生 > >常用shell腳本

常用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腳本