tldr/pages/common/wget.md

29 lines
589 B
Markdown
Raw Normal View History

2014-02-24 16:29:46 +00:00
# wget
> Download files from the Web.
> Supports HTTP, HTTPS, and FTP.
2014-02-24 16:29:46 +00:00
- Download the contents of an URL to a file:
2014-02-24 16:29:46 +00:00
`wget -O {{filename}} {{url}}`
2014-02-24 16:29:46 +00:00
- Limit download speed:
2014-02-24 16:29:46 +00:00
`wget --limit-rate={{200k}} {{url}}`
2014-02-24 16:29:46 +00:00
- Continue an incomplete download:
2014-02-24 16:29:46 +00:00
`wget -c {{url}}`
2014-02-24 16:29:46 +00:00
- Download a full website:
2014-02-24 16:29:46 +00:00
`wget --mirror -p --convert-links -P {{target_folder}} {{url}}`
2014-02-24 16:29:46 +00:00
- FTP download with username and password:
2014-02-24 16:29:46 +00:00
`wget --ftp-user={{username}} --ftp-password={{password}} {{url}}`
2016-05-15 14:49:44 +01:00
2016-05-17 06:28:13 +01:00
- Retry a given number of times if the download doesn't succeed at first:
2016-05-15 14:49:44 +01:00
2016-05-16 02:54:31 +01:00
`wget -t {{number_of_retries}} {{url}}`