====== How to mass download all zip iso 7z mp3 mp4 avi files from a single web page using wget? ====== Given there is some sort of web page or website offering you lists of iso, zip, mp3 or other direct links to files for download, you might want to download all of them automatically and without sweat. Well, try this: sudo apt install wget -y mkdir newDownloads cd newDownloads wget -r -H -nc -np -nH --cut-dirs=1 -A .tar,.zip,.rar,.7z,.iso,.mp3 -e robots=off -l1 http://www.someWebSite.com/niceFiles/somePage.htm It contains a shitload of command line options, and this is the reason why i put it on here. See ''man wget'' for more info on every command line option. --- //[[mail@awerner.myhome-server.de|Axel Werner]] 2018-09-18 16:50// {{tag>linux cli wget files downloader downloads script mp3 iso zip mass downloadmanager}}