2014-02-24 17:29:46 +01:00
|
|
|
# wget
|
|
|
|
|
|
|
|
> Download files from the Web
|
|
|
|
> Supports HTTP, HTTPS, and FTP
|
|
|
|
|
|
|
|
- Download a URL to a file
|
|
|
|
|
2014-03-02 21:38:04 +01:00
|
|
|
`wget -O filename "{{url}}"`
|
2014-02-24 17:29:46 +01:00
|
|
|
|
|
|
|
- Limit download speed
|
|
|
|
|
2014-03-02 21:38:04 +01:00
|
|
|
`wget --limit-rate={{200k}} {{url}}`
|
2014-02-24 17:29:46 +01:00
|
|
|
|
2015-10-22 09:31:52 +02:00
|
|
|
- Continue an incomplete download
|
2014-02-24 17:29:46 +01:00
|
|
|
|
2014-03-02 21:38:04 +01:00
|
|
|
`wget -c {{url}}`
|
2014-02-24 17:29:46 +01:00
|
|
|
|
|
|
|
- Download a full website
|
|
|
|
|
2014-03-02 21:38:04 +01:00
|
|
|
`wget --mirror -p --convert-links -P {{target_folder}} {{url}}`
|
2014-02-24 17:29:46 +01:00
|
|
|
|
|
|
|
- FTP download with username and password
|
|
|
|
|
2014-03-02 21:38:04 +01:00
|
|
|
`wget --ftp-user={{username}} --ftp-password={{password}} {{url}}`
|