it-artikel:linux:how-to-mass-download-all-zip-iso-7z-mp3-mp4-avi-files-from-a-single-web-page-using-wget

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.

Axel Werner 2018-09-18 16:50

it-artikel/linux/how-to-mass-download-all-zip-iso-7z-mp3-mp4-avi-files-from-a-single-web-page-using-wget.txt · Last modified: 2022-08-31 12:30 by 127.0.0.1