手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >一个shell写的ping函数
一个shell写的ping函数
摘要:复制代码代码如下:#!/bin/bash#2013-01-0614:00:00wanggyexp#note:pingmonitorset-u...

复制代码 代码如下:

#!/bin/bash

#2013-01-06 14:00:00 wanggy exp

#note:ping monitor

set -u

#set -x

ping_fun()

{

d_network=192.168.1

echo -n "input the network(default $d_network):"

read network

: ${network:=$d_network}

echo "network:$network"

d_hostip_beg=1

d_hostip_end=254

echo -n "input the hostip(default $d_hostip_beg $d_hostip_end):"

read hostip_beg hostip_end

: ${hostip_beg:=$d_hostip_beg}

: ${hostip_end:=$d_hostip_end}

echo "hostip_beg:$hostip_beg"

echo "hostip_end:$hostip_end"

count=3

for ((hostip=$hostip_beg;hostip<=$hostip_end;hostip++));do

host=$network.$hostip

echo "开始ping检测$host"

ping -c $count $host &>/dev/null

if [ $? = 0 ];then

echo "$host is up"

else

sleep 3

ping -c $count $host &>/dev/null

if [ $? = 0 ];then

echo "$host is up"

else

echo "$host is down"

fi

fi

done

#echo "执行完毕"

exit 0

}

main()

{

echo "----开始执行ping程序----"

ping_fun

}

main

exit 0

【一个shell写的ping函数】相关文章:

简介Linux中cp和mv搭配{,}在shell当中的用法

对Shell 脚本加密的方法

让Linux下的cron以秒为单位执行shell脚本的3种方法

shell 编程中空格的使用方法

Shell常用操作符总结

shell脚本中echo显示内容带颜色的实现方法

Shell 命令替换的两种方式

Linux中执行shell脚本的4种方法总结

Shell脚本中使用function(函数)示例

8个实用的Shell脚本分享

精品推荐
分类导航