Forrest logo
back to context overview

aria2c

List of commands for aria2c:

  • aria2c:ai:f1f6b come visualizzare in aria2c la velocita
    $ aria2c --show-console-readout=true
    try on your machine
    explain this command
  • aria2c:tldr:892dc aria2c: Download the URIs listed in a file with a specific number of parallel downloads.
    $ aria2c --input-file=${filename} --max-concurrent-downloads=${number_of_downloads}
    try on your machine
    explain this command
  • aria2c:tldr:97a61 aria2c: Download a specific URI to a file.
    $ aria2c "${url}"
    try on your machine
    explain this command
  • aria2c:tldr:a01e8 aria2c: FTP download with username and password.
    $ aria2c --ftp-user=${username} --ftp-passwd=${password} "${url}"
    try on your machine
    explain this command
  • aria2c:tldr:d0488 aria2c: Download with multiple connections.
    $ aria2c --split=${number_of_connections} "${url}"
    try on your machine
    explain this command
  • aria2c:tldr:d3270 aria2c: Limit download speed in bytes/s.
    $ aria2c --max-download-limit=${speed} "${url}"
    try on your machine
    explain this command
  • aria2c:tldr:e320b aria2c: Download multiple different files in parallel.
    $ aria2c --force-sequential ${false} "${url1 url2 ---}"
    try on your machine
    explain this command
back to context overview