标签:实现 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
标签:实现 source 下载 shell mkdir static color hit com
原文地址:http://www.cnblogs.com/John-2011/p/7815509.html