摘要: 1 #!/bin/bash 2 #连续4个小时ping不通远端主机,则本机关机。 3 4 begin_time=$(date "+%s") 5 while true;do 6 sleep 2 7 ping -c 1 172.16.160.1 > /dev/null 8 if [ $? != 0 ];then 9 end_time=$(d... 阅读全文
posted @ 2017-10-31 18:39 wangmo 阅读(684) 评论(0) 推荐(0) 编辑