How to download multiple URLs using wget using a single command?

From man wget:

2 Invoking
By default, Wget is very simple to invoke. The basic syntax is:
wget [option]… [URL]…

So, just use multiple URLs:

wget URL1 URL2

Or using the links from comments:

$ cat list.txt
http://www.vodafone.de/privat/tarife/red-smartphone-tarife.html
http://www.verizonwireless.com/smartphones-2.shtml
http://www.att.com/shop/wireless/devices/smartphones.html

and your command line:

wget -E -H -k -K -p -e robots=off -P /Downloads/ -i ./list.txt

works as expected.

Leave a Comment

tech