Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,24 +1,24 @@
# wget
> Download files from the Web
> Supports HTTP, HTTPS, and FTP
> Download files from the Web.
> Supports HTTP, HTTPS, and FTP.
- Download a URL to a file
- Download a URL to a file:
`wget -O filename "{{url}}"`
- Limit download speed
- Limit download speed:
`wget --limit-rate={{200k}} {{url}}`
- Continue an incomplete download
- Continue an incomplete download:
`wget -c {{url}}`
- Download a full website
- Download a full website:
`wget --mirror -p --convert-links -P {{target_folder}} {{url}}`
- FTP download with username and password
- FTP download with username and password:
`wget --ftp-user={{username}} --ftp-password={{password}} {{url}}`