常用shell脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用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脚本的主要内容,如果未能解决你的问题,请参考以下文章

Bash基础——Shell脚本内部常用环境变量

shell脚本系列---如何创建shell脚本,并执行常用的命令

shell脚本和常用命令

shell脚本

Kafka入门实战教程:常用的shell工具脚本

shell脚本常用脚本:for循环