-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patharia2c
More file actions
33 lines (18 loc) · 659 Bytes
/
aria2c
File metadata and controls
33 lines (18 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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 the contents of an URL to a file:
aria2c -o {{filename}} {{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}}