Last active
November 27, 2017 10:57
-
-
Save JinhaiZ/e6dcf1cb480410b696a22f2b3b57d6f8 to your computer and use it in GitHub Desktop.
useful linux function
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
# download an entire directory from a web site | |
# -r Turn on recursive retrieving. The default maximum depth is 5. | |
# --no-parent Do not ever ascend to the parent directory when retrieving recursively. | |
wget -r --no-parent http://formations.telecom-bretagne.eu/syst/TPDIST/Additional-Reading/ | |
# use wget with username and password | |
wget -r --no-parent --user user_name --password my_pwd http://formations.telecom-bretagne.eu/syst/TPDIST/Additional-Reading/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment