Created
October 5, 2018 03:37
-
-
Save hook-s3c/8cf6d3373e822c9aa7252b5c19e4da9c to your computer and use it in GitHub Desktop.
wget open folder download
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
| wget -r -np -m -e robots=off --timeout=1 --tries=3 --retry-connrefused http://domain.tld |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-r recursive
-np no-parent (don't ascend to the parent directory)
-m mirror (shortcut for -N -r -l inf --no-remove-listing)
-e execute ( execute a `.wgetrc'-style command)