您现在的位置是:网站首页> 编程资料编程资料
一个shell写的ping函数_linux shell_
2023-05-26
303人已围观
简介 一个shell写的ping函数_linux shell_
复制代码 代码如下:
#!/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
您可能感兴趣的文章:
相关内容
- bash 循环中变量作用范围的问题分析_linux shell_
- Bash Shell脚本学习小结_linux shell_
- shell脚本学习与总结_linux shell_
- linux下实现ftp自动备份shell脚本_linux shell_
- VPS自动备份数据库到FTP的脚本代码_linux shell_
- linux下自动备份MySQL数据并上传到FTP上的shell脚本_linux shell_
- shell中1小于/dev/null 2大于&1的含义_linux shell_
- sed初学者实用说明_linux shell_
- 对Shell 脚本加密的方法_linux shell_
- sed模式空间和暂存空间的区别_linux shell_
