Last active
July 20, 2017 17:50
Download full site with wget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Adjust --level as needed (max recursive depth) | |
#For rate-limited sites (random wait between 10 and 20 s) | |
wget -w 10 --random-wait -e robots=off --recursive --level 30 --no-clobber --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains mydomain.com --no-parent http://mydomain.com/path/ | |
#For own sites with no limit: | |
wget -e robots=off --recursive --level 30 --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains mydomain.com --no-parent http://mydomain.com/path/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment