簡體   English   中英

aria2c 可以下載帶有特定文件名的 url 列表嗎?

[英]Can aria2c download list of urls with specific file names for each?

例如,我有一個 URL 列表:

https://link.com/file/get/somefile.ext
https://go.com/download/anotherfile.ext
https://program.com/selection/download.php?id=26162

我想為最后一個 URL 設置一個特定的名稱,如下所示:

https://program.com/selection/download.php?id=26162 -o thirdfile.ext

aria2c 下載列表語法可以嗎?

我知道我可以這樣做:

aria2c https://link.com/file/get/somefile.ext
aria2c https://go.com/download/anotherfile.ext
aria2c https://program.com/selection/download.php?id=26162 -o thirdfile.ext

但是這樣我運行了太多的 aria2c。 ._.

從關於--input-file=的文檔

此外,可以在每個 URI 行之后指定選項。 選項行必須以一個或多個空白字符( SPACETAB )開頭,並且每行只能包含一個選項。 … 有關詳細信息,請參閱輸入文件小節。

如果你問我,這並不完全清楚。 所以這是一個輸入文件的例子(只有一個條目):

http://www.openclonk.org/header/logo.png
        out=openclonk.png

例子:

制作一個帶有鏈接的文本文件list.txt

https://www.google.hu/search?q=a&start=0
https://www.google.hu/search?q=a&start=10
https://www.google.hu/search?q=a&start=20

命令:

aria2c -ilist.txt -j2

其中 -j 選項指定並行下載的數量。

結果:

    D:\aria2c>aria2c -ihtml.txt

12/22 07:49:57 [NOTICE] Downloading 3 item(s)

12/22 07:49:57 [WARN] aria2c had to connect to the other side using an unknown TLS protocol. The integrity and confidentiality of the connection might be compromised.
Peer: www.google.hu (2a00:1450:400d:805::2003:443)

12/22 07:49:57 [WARN] aria2c had to connect to the other side using an unknown TLS protocol. The integrity and confidentiality of the connection might be compromised.
Peer: www.google.hu (2a00:1450:400d:805::2003:443)

12/22 07:49:57 [WARN] aria2c had to connect to the other side using an unknown TLS protocol. The integrity and confidentiality of the connection might be compromised.
Peer: www.google.hu (2a00:1450:400d:805::2003:443)

12/22 07:49:57 [NOTICE] File already exists. Renamed to /cygdrive/d/aria2c/search.1.

12/22 07:49:57 [NOTICE] File already exists. Renamed to /cygdrive/d/aria2c/search.2.

12/22 07:49:58 [NOTICE] Download complete: /cygdrive/d/aria2c/search.2

12/22 07:49:58 [NOTICE] Download complete: /cygdrive/d/aria2c/search.1
[#c86c02 0B/0B CN:1 DL:77KiB]
12/22 07:49:58 [NOTICE] Download complete: /cygdrive/d/aria2c/search

Download Results:
gid   |stat|avg speed  |path/URI
======+====+===========+=======================================================
efcadb|OK  |    46KiB/s|/cygdrive/d/aria2c/search.2
554614|OK  |    44KiB/s|/cygdrive/d/aria2c/search.1
c86c02|OK  |    60KiB/s|/cygdrive/d/aria2c/search

Status Legend:
(OK):download completed.

在結果中,search 將是 start=0 文件,te search.2 將是 start=20 文件,按順序。 因此,您可以使用另一個腳本按順序重命名它們。

解決方案:

制作一個帶有鏈接的文本文件list.txt ,在每個鏈接之后,以制表符或空格開頭的選項:

https://www.google.hu/search?q=a&start=0
 out=s1.html
https://www.google.hu/search?q=a&start=10
 out=s2.html
https://www.google.hu/search?q=a&start=20
 out=s3.html

命令:

aria2c --input-file list.txt

結果:

D:\aria2c>aria2c --input-file list.txt

12/22 20:54:44 [NOTICE] Downloading 3 item(s)

12/22 20:54:45 [WARN] aria2c had to connect to the other side using an unknown TLS protocol. The integrity and confidentiality of the connection might be compromised.
Peer: www.google.hu (2a00:1450:400d:805::2003:443)

12/22 20:54:45 [WARN] aria2c had to connect to the other side using an unknown TLS protocol. The integrity and confidentiality of the connection might be compromised.
Peer: www.google.hu (2a00:1450:400d:805::2003:443)

12/22 20:54:45 [WARN] aria2c had to connect to the other side using an unknown TLS protocol. The integrity and confidentiality of the connection might be compromised.
Peer: www.google.hu (2a00:1450:400d:805::2003:443)
[DL:37KiB][#177d35 0B/0B][#bae5ee 0B/0B][#d1da5b 0B/0B]
12/22 20:54:46 [NOTICE] Download complete: /cygdrive/d/aria2c/s1.html
[DL:53KiB][#bae5ee 0B/0B][#d1da5b 0B/0B]
12/22 20:54:47 [NOTICE] Download complete: /cygdrive/d/aria2c/s2.html

12/22 20:54:47 [NOTICE] Download complete: /cygdrive/d/aria2c/s3.html

Download Results:
gid   |stat|avg speed  |path/URI
======+====+===========+=======================================================
177d35|OK  |    53KiB/s|/cygdrive/d/aria2c/s1.html
bae5ee|OK  |    18KiB/s|/cygdrive/d/aria2c/s2.html
d1da5b|OK  |    15KiB/s|/cygdrive/d/aria2c/s3.html

Status Legend:
(OK):download completed.

aria2c 示例

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM