|
发表于 2008-5-26 18:59:51
|
显示全部楼层
- pjq@localhost ~/shell/justforfun $ cat get.sh
- #########################################################################
- # Author: pengjianqing@sina.com
- # Created Time: Mon 26 May 2008 06:47:53 PM CST
- # File Name: get.sh
- # Description:
- #########################################################################
- #!/bin/bash
- let i=1
- sum=16
- while [ ${i} -lt ${sum} ];do
- wget http://www.mjhy.cn/ebook/justforfun/${i}.htm
- ((i++))
- done
复制代码 |
|