Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.37 KB

aria2.md

File metadata and controls

65 lines (48 loc) · 1.37 KB

aria2 download Helper

website

  1. aria2

help

  1. 格式
    $ aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]
    
  2. optiions
    -d, --dir=DIR                The directory to store the downloaded file.
    -o, --out=FILE               The file name of the downloaded file.
    -s, --split=N                Download a file using N connections.
    -i, --input-file=FILE        Downloads URIs found in FILE.
    -j                            Set maximum number of parallel downloads for every static (HTTP/FTP) URL, torren and metalink.
    

Examples

  1. Download from WEB

    $ aria2c http://example.org/mylinux.iso
  2. Download from 2 sources

    $ aria2c http://a/f.iso ftp://b/f.iso
  3. Download using 2 connections per host

    $ aria2c -x2 http://a/f.iso
  4. BitTorrent

    $ aria2c http://example.org/mylinux.torrent
  5. BitTorrent Magnet URI

    $ aria2c 'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'
  6. Metalink

    $ aria2c http://example.org/mylinux.metalink
  7. Download URIs found in text file:

    $ aria2c -i uris.txt