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

ping 检测,for循环

时间:2020-04-27 15:34:11      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:code   exist   else   bash   root   cat   amp   null   des   

#!/bin/bash for IP in `cat /root/Desktop/ip.txt` do ping -c 3 -i 0.2 -w 3 $IP &> /dev/null if [ $? -eq 0 ] then echo "This host $IP is existed" else echo "This host $IP isn‘t existed" fi done

ping 检测,for循环

标签:code   exist   else   bash   root   cat   amp   null   des   

原文地址:https://blog.51cto.com/sampsondotqiu/2490643

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