Download an entire website with wget
jasper - 3 years ago (last modified 3 years ago)
wget \ --recursive \ --no-clobber \ --page-requisites \ --html-extension \ --convert-links \ --restrict-file-names=windows \ --domains www.example.com \ --no-parent \ https://www.example.com
This perfectly downloads an entire website including all scripts, stylesheets etc and even adjust the links so it works everywhere. Just open the downloaded folder, load up `index.html` in your browser and you can browse the entire website locally.
cool, didn't know this was possible with wget..
reply