tldr/pages/common/aria2c.md

34 lines
673 B
Markdown
Raw Normal View History

2015-12-30 21:26:37 +00:00
# aria2c
2016-01-21 11:45:39 +00:00
> Fast download utility.
> Supports HTTP(S), FTP, SFTP, BitTorrent, and Metalink.
2019-06-09 00:05:26 +01:00
> More information: <https://aria2.github.io>.
2015-12-30 21:26:37 +00:00
2016-01-21 11:45:39 +00:00
- Download a URI to a file:
2015-12-30 21:26:37 +00:00
`aria2c {{url}}`
- Download the contents of an URL to a file:
`aria2c -o {{filename}} {{url}}`
2016-01-21 11:45:39 +00:00
- Download from multiple sources:
2015-12-30 21:26:37 +00:00
`aria2c {{url_1}} {{url_2}}`
2016-01-21 11:45:39 +00:00
- Download the URIs listed in a file:
2015-12-30 21:26:37 +00:00
`aria2c -i {{filename}}`
2016-01-21 11:45:39 +00:00
- Download with multiple connections:
2015-12-30 21:26:37 +00:00
`aria2c -s {{connections_num}} {{url}}`
2016-01-21 11:45:39 +00:00
- FTP download with username and password:
2015-12-30 21:26:37 +00:00
`aria2c --ftp-user={{username}} --ftp-passwd={{password}} {{url}}`
2018-10-29 16:59:22 +00:00
- Limit download speed in bytes/s:
`aria2c --max-download-limit={{speed}} {{url}}`