Skip to content

Instantly share code, notes, and snippets.

@Max95Cohen
Created August 28, 2024 08:48
Show Gist options
  • Save Max95Cohen/debf4876273f02367b85c22330d02dc0 to your computer and use it in GitHub Desktop.
Save Max95Cohen/debf4876273f02367b85c22330d02dc0 to your computer and use it in GitHub Desktop.
wget examples
# 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