# script will download the fileList.txt file and iterated through the list of files # to individually download each file. # # “-nv” means ‘not verbose’ # “-O -” means send the output to standard out for x in $(wget -nv -O - ftp://ftp.ssec.wisc.edu/ABI/joleenf/broadcasters/fileList.txt); do wget -nv ftp://ftp.ssec.wisc.edu/ABI/joleenf/broadcasters/$x; done