tldr/pages/common/aria2c.md

38 lines
982 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
- Download a specific URI to a file:
2015-12-30 21:26:37 +00:00
`aria2c "{{url}}"`
2015-12-30 21:26:37 +00:00
- Download a file from a URI with a specific output name:
`aria2c --out={{path/to/file}} "{{url}}"`
- Download multiple different files in parallel:
`aria2c --force-sequential {{false}} "{{url1 url2 ...}}"`
- Download from multiple sources with each URI pointing to the same file:
2015-12-30 21:26:37 +00:00
`aria2c "{{url1 url2 ...}}"`
2015-12-30 21:26:37 +00:00
- Download the URIs listed in a file with a specific number of parallel downloads:
2015-12-30 21:26:37 +00:00
`aria2c --input-file={{path/to/file}} --max-concurrent-downloads={{number_of_downloads}}`
2015-12-30 21:26:37 +00:00
2016-01-21 11:45:39 +00:00
- Download with multiple connections:
2015-12-30 21:26:37 +00:00
`aria2c --split={{number_of_connections}} "{{url}}"`
2015-12-30 21:26:37 +00:00
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}}"`