|
@@ -26,6 +26,9 @@ Basic Options
|
|
|
Downloads URIs found in FILE. You can specify multiple URIs for a single
|
|
Downloads URIs found in FILE. You can specify multiple URIs for a single
|
|
|
entity: separate URIs on a single line using the TAB character.
|
|
entity: separate URIs on a single line using the TAB character.
|
|
|
Reads input from stdin when '-' is specified.
|
|
Reads input from stdin when '-' is specified.
|
|
|
|
|
+ The additional *out* and *dir* options can be specified after each line of
|
|
|
|
|
+ URIs. This optional line must start with white space(s).
|
|
|
|
|
+ See INPUT FILE section for details.
|
|
|
|
|
|
|
|
*-l*, *--log*=LOG::
|
|
*-l*, *--log*=LOG::
|
|
|
The file name of the log file. If '-' is specified, log is written to
|
|
The file name of the log file. If '-' is specified, log is written to
|
|
@@ -104,7 +107,7 @@ HTTP/FTP Options
|
|
|
In Metalink, BitTorrent download you cannot specify file name.
|
|
In Metalink, BitTorrent download you cannot specify file name.
|
|
|
The file name specified here is only used when the URLs fed to aria2
|
|
The file name specified here is only used when the URLs fed to aria2
|
|
|
is done by command line without *-i*, *-Z* option. For example:
|
|
is done by command line without *-i*, *-Z* option. For example:
|
|
|
-aria2c -o myfile.zip http://mirror1/file.zip http://mirror2/file.zip
|
|
|
|
|
|
|
+aria2c -o myfile.zip \http://mirror1/file.zip \http://mirror2/file.zip
|
|
|
|
|
|
|
|
*--proxy-method*=METHOD::
|
|
*--proxy-method*=METHOD::
|
|
|
Set the method to use in proxy request.
|
|
Set the method to use in proxy request.
|
|
@@ -220,7 +223,7 @@ HTTP Specific Options
|
|
|
*--header*=HEADER::
|
|
*--header*=HEADER::
|
|
|
Append HEADER to HTTP request header.
|
|
Append HEADER to HTTP request header.
|
|
|
You can use this option repeatedly to specify more than one header:
|
|
You can use this option repeatedly to specify more than one header:
|
|
|
- aria2c *--header*="X-A: b78" *--header*="X-B: 9J1" http://host/file
|
|
|
|
|
|
|
+ aria2c *--header*="X-A: b78" *--header*="X-B: 9J1" \http://host/file
|
|
|
|
|
|
|
|
*--load-cookies*=FILE::
|
|
*--load-cookies*=FILE::
|
|
|
Load Cookies from FILE using the Firefox3 format(SQLite3) and the
|
|
Load Cookies from FILE using the Firefox3 format(SQLite3) and the
|
|
@@ -871,6 +874,30 @@ You can seed downloaded file using --check-integrity=true option.
|
|
|
aria2c --check-integrity=true file.torrent
|
|
aria2c --check-integrity=true file.torrent
|
|
|
---------------------------------------------
|
|
---------------------------------------------
|
|
|
|
|
|
|
|
|
|
+INPUT FILE
|
|
|
|
|
+----------
|
|
|
|
|
+The input file can contain list of URIs to feed them into aria2.
|
|
|
|
|
+You can specify multiple URIs for a single entity:
|
|
|
|
|
+separate URIs on a single line using the TAB character.
|
|
|
|
|
+
|
|
|
|
|
+Each line is treated as if it is provided in command-line argument.
|
|
|
|
|
+Therefore they are affected by *-Z* and *-P* options.
|
|
|
|
|
+The additional *out* and *dir* options can be specified after each line of
|
|
|
|
|
+URIs. This optional line must start with white space(s).
|
|
|
|
|
+
|
|
|
|
|
+For example, the content of uri.txt is:
|
|
|
|
|
+---------------------------------------------
|
|
|
|
|
+http://server/file.iso http://mirror/file.iso
|
|
|
|
|
+ dir=/iso_images
|
|
|
|
|
+ out=file.img
|
|
|
|
|
+http://foo/bar
|
|
|
|
|
+---------------------------------------------
|
|
|
|
|
+
|
|
|
|
|
+and if aria2 is executed with -i uri.txt -d /tmp options,
|
|
|
|
|
+then file.iso is saved as /iso_images/file.img and it is downloaded from
|
|
|
|
|
+\http://server/file.iso and \http://mirror/file.iso.
|
|
|
|
|
+The file bar is downloaded from \http://foo/bar and saved as /tmp/bar.
|
|
|
|
|
+
|
|
|
SERVER PERFORMANCE PROFILE
|
|
SERVER PERFORMANCE PROFILE
|
|
|
--------------------------
|
|
--------------------------
|
|
|
This section describes the format of server performance profile.
|
|
This section describes the format of server performance profile.
|