-
-
Save Max95Cohen/debf4876273f02367b85c22330d02dc0 to your computer and use it in GitHub Desktop.
wget examples
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 from web-site | |
wget https://example.com/file.zip | |
# continue from interrupt | |
wget -c https://example.com/file.zip | |
# new file name | |
wget -O newname.zip https://example.com/file.zip | |
# new path | |
wget -P /home/$USER/Downloads https://example.com/file.zip | |
# list from file | |
wget -i downloads.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment