美文网首页Shell百例
13-测试活跃的主机-while版本

13-测试活跃的主机-while版本

作者: pengwg | 来源:发表于2019-12-09 22:19 被阅读0次
    #!/bin/bash
    #Author:Willem
    
    i=1
    while [ $i -le 254 ] 
    do
            ping -c 2 -i 0.3 -W 1 192.168.1.$i &>/dev/null
            if [ $? -eq 0 ];then
                    echo "192.168.1.$i is up"
            else
                    echo "192.168.1.$i is down"
            fi
            let i++
    done
    

    相关文章

      网友评论

        本文标题:13-测试活跃的主机-while版本

        本文链接:https://www.haomeiwen.com/subject/cdoigctx.html