#!/bin/sh
# 这边写文件名（全路径）
FILE_NAME="filelist_DR2"
while read LINE
do
	echo $LINE
	wget -c $LINE
done < $FILE_NAME
