tldr/pages/common/aria2c.md

25 lines
461 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.
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}}`
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}}`