mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
aria2c: add --force-sequential example and clarify default behavior (#5914)
This commit is contained in:
parent
e557714771
commit
9909eb3d14
1 changed files with 10 additions and 6 deletions
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue