1
0
Fork 0
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:
Gurdit Singh Bedi 2021-05-11 20:16:41 +05:30 committed by GitHub
parent e557714771
commit 9909eb3d14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: