Last active
August 29, 2015 14:27
-
-
Save rakauchuk/3db172005db0b61f151b to your computer and use it in GitHub Desktop.
wget as download manager
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
donwload links: | |
$ vi links.txt | |
$ wget -c -i links.txt | |
download all site: | |
$ wget -m http://example.com/ | |
site with 5 nodes: | |
$ wget -c -nc -N -E -r -l 5 -k -p -np http://example.com/catalogue/bla-bla-bla | |
Continue the Incomplete Download Using wget -c | |
$ wget -c http://example.com/file.zip | |
Test Download URL Using wget –spider | |
$ wget --spider DOWNLOAD-URL | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment