码迷,mamicode.com
首页 > 其他好文 > 详细

ping.sh

时间:2019-01-15 12:01:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:amp   seq   done   set   The   down   .sh   echo   tee   

#!/bin/bash
set -xv
ip1=‘172.20.100‘
for ip2 in $(seq 0 254)
do
ip=${ip1}.${ip2}
ping -c 2 -i 1 -w 1 $ip > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo -e "ip:$ip up" | tee -a up.txt
else
echo -e "ip:$ip down" | tee -a down.txt
fi
done

ping.sh

标签:amp   seq   done   set   The   down   .sh   echo   tee   

原文地址:https://www.cnblogs.com/leo001/p/10270510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!