aria2c: add --force-sequential example and clarify default behavior (#5914)
This commit is contained in:

committed by
GitHub

parent
e557714771
commit
9909eb3d14
@@ -8,21 +8,25 @@
|
||||
|
||||
`aria2c {{url}}`
|
||||
|
||||
- Download the contents of an URL to a file:
|
||||
- Download the file pointed to by the specified URI with the specified output name:
|
||||
|
||||
`aria2c -o {{filename}} {{url}}`
|
||||
`aria2c --out={{filename}} {{url}}`
|
||||
|
||||
- Download from multiple sources:
|
||||
- Download multiple files in parallel:
|
||||
|
||||
`aria2c --force-sequential {{url_1}} {{url_2}}`
|
||||
|
||||
- Download from multiple sources each URI pointing to the same file:
|
||||
|
||||
`aria2c {{url_1}} {{url_2}}`
|
||||
|
||||
- Download the URIs listed in a file:
|
||||
- Download the URIs listed in a file with limited parallel downloads:
|
||||
|
||||
`aria2c -i {{filename}}`
|
||||
`aria2c --input-file={{filename}} --max-concurrent-downloads={{number_of_downloads}}`
|
||||
|
||||
- Download with multiple connections:
|
||||
|
||||
`aria2c -s {{connections_num}} {{url}}`
|
||||
`aria2c --split={{number_of_connections}} {{url}}`
|
||||
|
||||
- FTP download with username and password:
|
||||
|
||||
|
Reference in New Issue
Block a user