wget: reorder examples and add additional details (#1501)

coverage
Waldir Pimenta 2017-09-27 15:27:59 +01:00 committed by Agniva De Sarker
parent 22791d16c9
commit 968aa0bff4
1 changed files with 18 additions and 14 deletions

View File

@ -3,26 +3,30 @@
> Download files from the Web.
> Supports HTTP, HTTPS, and FTP.
- Download the contents of an URL to a file:
- Download the contents of an URL to a file (named "foo" in this case):
`wget -O {{filename}} {{url}}`
`wget {{https://example.com/foo}}`
- Limit download speed:
- Download a single web page and all its resources (scripts, stylesheets, images, etc.):
`wget --limit-rate={{200k}} {{url}}`
`wget --page-requisites --convert-links {{https://example.com/somepage.html}}`
- Download a full website, with 3-second intervals between requests:
`wget --mirror --page-requisites --convert-links --wait=3 {{https://example.com}}`
- Download the contents of an URL via authenticated FTP:
`wget --ftp-user={{username}} --ftp-password={{password}} {{ftp://example.com}}`
- Limit download speed to 200 kB/s:
`wget --limit-rate={{200k}} {{https://example.com}}`
- Continue an incomplete download:
`wget -c {{url}}`
- Download a full website:
`wget --mirror -p --convert-links -P {{target_folder}} {{url}}`
- FTP download with username and password:
`wget --ftp-user={{username}} --ftp-password={{password}} {{url}}`
`wget -c {{https://example.com}}`
- Retry a given number of times if the download doesn't succeed at first:
`wget -t {{number_of_retries}} {{url}}`
`wget -t {{number_of_retries}} {{https://example.com}}`