码迷,mamicode.com
首页 > 系统相关 > 详细

Shell脚本实现批量下载资源并保留原始路径

时间:2017-11-10 18:32:38      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:实现   source   下载   shell   mkdir   static   color   hit   com   

示例资源列表
如url.txt:

http://su.bdimg.com/static/superplus/img/logo_white_ee663702.png
http://su.bdimg.com/static/superplus/img/logo_white_ee663703.png
http://su.bdimg.com/static/superplus/img/logo_white_ee663701.png
http://su.bdimg.com/static/superplus/img/logo_white_ee663704.png
http://su.bdimg.com/static/superplus/img/logo_white_ee663705.png
http://su.bdimg.com/static/superplus/img/logo_white_ee663706.png

脚本如下:

download.sh

#!/bin/bash
# desc: download resource
# author: John

mydir=`pwd`

while read line
do
{
    if [ -n "$line" ]
    then
        cd $mydir
        url=$(echo "$line" | tr -d \r)
        picdir=$(echo $url | sed -r s/http:\/\///g)
        picname=$(echo ${picdir##*/})
        picpath=$(echo ${picdir%/*})
        mkdir -p $picpath
        cd $picpath
        wget -O $picname `echo $url`
    fi
}
done < $1
exit 0

运行:

sh download.sh url.txt

 

Shell脚本实现批量下载资源并保留原始路径

标签:实现   source   下载   shell   mkdir   static   color   hit   com   

原文地址:http://www.cnblogs.com/John-2011/p/7815509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!