mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-12 18:15:24 +02:00
25 lines
438 B
Markdown
25 lines
438 B
Markdown
![]() |
# wget
|
||
|
|
||
|
> Download files from the Web
|
||
|
> Supports HTTP, HTTPS, and FTP
|
||
|
|
||
|
- Download a URL to a file
|
||
|
|
||
|
`wget -O filename "{{URL}}"`
|
||
|
|
||
|
- Limit download speed
|
||
|
|
||
|
`wget --limit-rate=200k {{URL}}`
|
||
|
|
||
|
- Continue an incomplete download
|
||
|
|
||
|
`wget -c {{URL}}`
|
||
|
|
||
|
- Download a full website
|
||
|
|
||
|
`wget --mirror -p --convert-links -P ./LOCAL-DIR {{URL}}`
|
||
|
|
||
|
- FTP download with username and password
|
||
|
|
||
|
`wget --ftp-user={{USERNAME}} --ftp-password={{PASSWORD}} {{URL}}`
|