Last active
January 24, 2021 16:32
-
-
Save techie2000/a6568ab68be28aad77f578d7fe548f56 to your computer and use it in GitHub Desktop.
Download a site
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
wget --mirror --no-parent --continue --limit-rate=512k --wait=0 --reject "index.html*, foo.txt, bar*.*" "https://the-eye.eu/public/AppleArchive/" |
--wait=seconds
-R "reject list"
could be re-written as--reject "reject list"
updated- makes it easier to understand just by reaing it, no need to memorise the flags :)
--wait=seconds
updated - default to zero (no delay)
Consider adding --random-wait
to try and prevent blocking by sits that analyse logs and try to spot/prevent wget type ops
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-R "reject list"
could be re-written as--reject "reject list"