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

ping.sh

时间:2014-10-27 20:56:58      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:sp   on   bs   as   nbsp   c   ash   bash   循环   

#!/bin/bash

while [ 1 -eq 1 ]   #一直循环
do
ping 192.168.1.116 -c 1|grep -q "time="       #ping通有time=    $?=0   不同$?=1
if [ $? -eq 0 ]
then
echo "tong 0"  
else
echo " butong 1"   #  可以mail邮件通知
fi
done

ping.sh

标签:sp   on   bs   as   nbsp   c   ash   bash   循环   

原文地址:http://www.cnblogs.com/hanxing/p/4055001.html

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