有如下url.txt列表:
如果手工下载这些图片,并保存在各自的文件夹下,会比较麻烦,费时费力,最好的办法是用shell/ target=_blank class=infotextkey>shell脚本,结合linuxjishu/14085.html target=_blank class=infotextkey>wget命令,实现批量下载。
shell脚本:download.sh
#!/bin/bash
# desc: download resource
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
注意:
1、为了去掉文本文件中行末的换行符,要进行删除:
2、取资源名:
3、取资源路径:
运行: