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

今天写了一个批量检查ip是否ping得通的脚本,备忘

时间:2016-06-08 17:26:26      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:shell多线程ping for循环

脚本内容如下,需要配合ip.txt使用。ip.txt里写上需要检查的ip


for i in `cat ./ip.txt`

do

{

ping -c 1 $i >/dev/null 2>&1

if [ ! $? -eq 0 ]

then

echo date >>./error_ip.txt

echo $i >>./error_ip.txt

echo >>./error_ip.txt

fi

}&

done

wait


今天写了一个批量检查ip是否ping得通的脚本,备忘

标签:shell多线程ping for循环

原文地址:http://zhukeqiang.blog.51cto.com/8692790/1787392

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