摘要: #shellfor x in `seq 1 255`do #echo $x ip=10.10.1.$x ping -c 2 $ip > /dev/null if [ $? == 0 ];then echo "$ip is alive" else echo "$ip is unavialable" f 阅读全文
posted @ 2018-03-20 16:11 helloworld899 阅读(1041) 评论(0) 推荐(0) 编辑