1. #!/bin/bash
    2. #本脚本准备有序的网络资料进行批量下载操作(如 01.jpg,02.jpg,03.jpg)
    3. #设置资源来源的域名连接
    4. url="http://www.test.com/"
    5. echo "开始下载…"
    6. sleep 2
    7. type=jpg
    8. for i in `seq 100`
    9. echo "正在下载$i.$type"
    10. curl $url/$i.$type o /tmp/${i}$type
    11. sleep 1
    12. done
    13. #curl 使用‐o 选项指定下载文件另存到哪里