shell脚本之检查局域网中在线的ip地址
Posted 努力哥-运维自动化
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本之检查局域网中在线的ip地址相关的知识,希望对你有一定的参考价值。
[[email protected] ]# cat ping.sh
#!/bin/bash . /etc/init.d/functions for var in {1..254}; do ip=192.168.0.$var ping -c2 $ip >/dev/null 2>&1 if [ $? = 0 ];then action "$ip" /bin/true else action "$ip" /bin/false fi done
#运行脚本:
chmod +x ping.sh
sh ping.sh
以上是关于shell脚本之检查局域网中在线的ip地址的主要内容,如果未能解决你的问题,请参考以下文章