一个shell写的ping函数
#!/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
一个可交互的并发ping检测脚本
#!/bin/bash#********************************##2013-01-1117:00:00wanggyexp##note:pingmonitor##********************************#set-uping_fun(){d_network=192.168.1echo-n"inputthenetwork(default$d_networ
并发数据库压力测试的shell脚本代码
#!/bin/bash#********************************##并发后台运行fun##forwanggy2012-01-25##note:##fun_numfun函数后台运行次数##sql_num每个函数sql运行次数##*******************************
后台实时分流文件的shell脚本
将bill文件夹下的文件按一定规则(文件名奇偶)拷贝至bill1,bill2文件夹下。更新bill1,bill2处理进度标签(更新file.max)file3为bill目录下当前最新文件的