Created
January 9, 2013 02:52
-
-
Save cloudsben/4490135 to your computer and use it in GitHub Desktop.
Download an entire website
This file contains 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
# -p parameter tells wget to include all files, including images. | |
# -e robots=off you don't want wget to obey by the robots.txt file | |
# -U mozilla as your browsers identity. | |
# --random-wait to let wget chose a random number of seconds to wait, avoid get into black list. | |
# Other Useful wget Parameters: | |
# --limit-rate=20k limits the rate at which it downloads files. | |
# -b continues wget after logging out. | |
# -o $HOME/wget_log.txt logs the output | |
wget --random-wait -r -p -e robots=off -U mozilla http://www.example.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment