I have a list of URLs that I would like to use in wget using --input-file.
However, I cannot decide how to control the value of -output-document at the same time, which is simple if you issue the commands one by one. I would like to save each document as MD5 its URL.
cat url-list.txt | xargs -P 4 wget
And xargs exists because I also want to use max-procs functions for parallel downloads.
source share