1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 01:24:55 +02:00
tldr/pages/common/aria2c.md
2019-06-09 18:53:49 +02:00

29 lines
593 B
Markdown

# aria2c
> Fast download utility.
> Supports HTTP(S), FTP, SFTP, BitTorrent, and Metalink.
> More information: <https://aria2.github.io>.
- Download a URI to a file:
`aria2c {{url}}`
- Download from multiple sources:
`aria2c {{url_1}} {{url_2}}`
- Download the URIs listed in a file:
`aria2c -i {{filename}}`
- Download with multiple connections:
`aria2c -s {{connections_num}} {{url}}`
- FTP download with username and password:
`aria2c --ftp-user={{username}} --ftp-passwd={{password}} {{url}}`
- Limit download speed in bytes/s:
`aria2c --max-download-limit={{speed}} {{url}}`