leiux
marksman201
全部博文(74)
2011年(1)
2010年(32)
2009年(32)
2008年(9)
gfree_wi
snowball
lxx12345
格伯纳
kenny_24
iHoganli
vskunkka
ewiniar
DC_楚楚
__slucx_
分类: LINUX
2009-09-17 22:18:08
#!/bin/sh source_file=/tmp/iplist.htm tmp_file=/tmp/tmpfile.txt ip_file=/tmp/ip.txt ip_mask_file=/tmp/ip_mask.txt n=0 echo -n "" > $ip_file echo -n "" > $ip_mask_file wget -O $source_file http://hitsun.hit.edu.cn/zxiplist.htm echo "Start to analyse the source file..." sed -n 's/\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]\)/$\1$/p' $source_file | cut -d$ -f2 > $tmp_file cat $tmp_file | while read ip do tmp=$(expr $n % 3) if [ $tmp -eq 0 ]; then echo $ip >> $ip_file ip_bak=$ip fi if [ $tmp -eq 2 ]; then ip_bak=$ip_bak"/"$ip echo $ip_bak >> $ip_mask_file fi n=$(expr $n + 1) done echo "Done"
上一篇:ubuntu8.04支持投影仪
下一篇:备份文件的脚本
登录 注册