|
@@ -25,7 +25,7 @@ browsers. This engine in was implemented in a single-thread model.
|
|
|
The architecture is clean and easy to extend. aria2 currently supports HTTP,
|
|
|
FTP, and BitTorrent. It also supports Metalink version 3.0.
|
|
|
|
|
|
-Please visit the project web site at http://aria2.sourceforge.net
|
|
|
+Please visit the project web site at http://aria2.sourceforge.net/
|
|
|
|
|
|
OPTIONS
|
|
|
-------
|
|
@@ -171,17 +171,33 @@ OPTIONS
|
|
|
|
|
|
-i, --input-file=FILE::
|
|
|
Downloads URIs found in 'FILE'. You can specify
|
|
|
- multiple URIs for a single entity: deliminate
|
|
|
- URIs by Tab in a single line.
|
|
|
+ multiple URIs for a single entity: deliminate
|
|
|
+ URIs by Tab in a single line.
|
|
|
+ Reads input from stdin when '-' is specified.
|
|
|
|
|
|
-j, --max-concurrent-downloads=N::
|
|
|
Set maximum number of concurrent downloads.
|
|
|
+ It should be used with '-i' option.
|
|
|
Default: '5'
|
|
|
|
|
|
--load-cookies=FILE::
|
|
|
Load cookies from 'FILE'. The format of 'FILE' is
|
|
|
one used by Netscape and Mozilla.
|
|
|
|
|
|
+ -S, --show-files::
|
|
|
+ Print file listing of .torrent or .metalink file
|
|
|
+ and exit.
|
|
|
+
|
|
|
+ --select-file=INDEX...::
|
|
|
+ Set file to download by specifing its index.
|
|
|
+ You can know file index through '--show-files'
|
|
|
+ option. Multiple indexes can be specified by using
|
|
|
+ ',' like "3,6".
|
|
|
+ You can also use '-' to specify rangelike "1-5".
|
|
|
+ ',' and '-' can be used together.
|
|
|
+ When used with -M option, index may vary depending
|
|
|
+ on the query(see '--metalink-*' options).
|
|
|
+
|
|
|
-T, --torrent-file=TORRENT_FILE::
|
|
|
The file path to .torrent file.
|
|
|
|
|
@@ -191,9 +207,6 @@ OPTIONS
|
|
|
downloaded file ends with .torrent.
|
|
|
Default: 'true'
|
|
|
|
|
|
- -S, --show-files::
|
|
|
- Print file listing of .torrent file and exit.
|
|
|
-
|
|
|
--direct-file-mapping=true|false::
|
|
|
Directly read from and write to each file
|
|
|
mentioned in .torrent file.
|
|
@@ -201,7 +214,7 @@ OPTIONS
|
|
|
|
|
|
--listen-port=PORT::
|
|
|
Set port number to listen to for peer connection.
|
|
|
- Default: 6881-6999
|
|
|
+ Default: '6881-6999'
|
|
|
|
|
|
--max-upload-limit=SPEED::
|
|
|
Set max upload speed in bytes per sec.
|
|
@@ -209,14 +222,6 @@ OPTIONS
|
|
|
You can append 'K' or 'M'(1K = 1024, 1M = 1024K).
|
|
|
Default: '0'
|
|
|
|
|
|
- --select-file=INDEX...::
|
|
|
- Set file to download by specifing its index.
|
|
|
- You can know file index through '--show-files'
|
|
|
- option. Multiple indexes can be specified by using
|
|
|
- ',' like "3,6".
|
|
|
- You can also use '-' to specify rangelike "1-5".
|
|
|
- ',' and '-' can be used together.
|
|
|
-
|
|
|
--seed-time=MINUTES::
|
|
|
Specify seeding time in minutes. See also
|
|
|
'--seed-ratio' option.
|
|
@@ -279,6 +284,12 @@ EXAMPLES
|
|
|
aria2c http://AAA.BBB.CCC/file.zip http://DDD.EEE.FFF/GGG/file.zip
|
|
|
You can mix up different protocols::
|
|
|
aria2c http://AAA.BBB.CCC/file.zip ftp://DDD.EEE.FFF/GGG/file.zip
|
|
|
+ Download files listed in a text file. 5 files are downloaded concurrently::
|
|
|
+ aria2c -i uris.txt -j 5
|
|
|
+ Download files passed through stdin::
|
|
|
+ cat uris.txt | aria2c -i -
|
|
|
+ Download a file using local cookies::
|
|
|
+ aria2c --load-cookies cookies.txt http://AAA.BBB.CCC/file.zip
|
|
|
|
|
|
Download a torrent::
|
|
|
aria2c -o test.torrent http://AAA.BBB.CCC/file.torrent
|
|
@@ -286,6 +297,8 @@ EXAMPLES
|
|
|
aria2c -T test.torrent
|
|
|
Download only selected files::
|
|
|
aria2c -T test.torrent dir/file1.zip dir/file2.zip
|
|
|
+ Download only selected files using index::
|
|
|
+ aria2c -T test.torrent --select-file 1,3-5
|
|
|
Print file listing of .torrent file::
|
|
|
aria2c -T test.torrent -S
|
|
|
|
|
@@ -295,6 +308,12 @@ EXAMPLES
|
|
|
aria2c -M test.metalink
|
|
|
Metalink downloading with preferences::
|
|
|
aria2c -M test.metalink --metalink-version=1.1.1 --metalink-language=en-US
|
|
|
+ Download only selected files::
|
|
|
+ aria2c -T test.metalink --metalink-language=en-US dir/file1.zip dir/file2.zip
|
|
|
+ Download only selected files using index::
|
|
|
+ aria2c -T test.metalink --metalink-language=en-US --select-file 1,3-5
|
|
|
+ Print file listing of .metalink file::
|
|
|
+ aria2c -T test.torrent -S --metalink-language=en-US
|
|
|
|
|
|
FILES
|
|
|
-----
|