#!/bin/bash # USAGE # bash ./parallel_download.sh url_list.txt set -o nounset set -o errexit FILELIST=$1 cat $FILELIST | xargs -n 1 -P 4 wget --no-clobber