aria2c中的-o参数无法重命名下载的文件

aria2c中的-o参数无法重命名下载的文件
aria2c -S  /home/se.torrent

Files:    
idx|path/length    
===+===========================================================================
1|./test.mkv        
 |283MiB (297,429,086)        

---+---------------------------------------------------------------------------

我想将下载的文件作为 ok.mkv 保存在 /tmp 中。

aria2c -d   /tmp  -o  ok.mkv    /home/se.torrent

下载的名称不会变成/tmp/ok.mkv,
执行命令时它仍然是/tmp/test.mkv。 在此处输入图片描述

在手册中aria2c -h,没有如下字符串:
NOTE: You cannot specify a file name for Metalink or BitTorrent downloads.

答案1

当您尝试使用手册页中的重命名.torrent文件时,您运气不佳:aria2c

 -o, --out=<FILE>
      The   file name of the downloaded file. When the
      --force-sequential option is used, this option is ignored.

      NOTE:
      You  cannot  specify  a  file name for Metalink or BitTorrent
      downloads.

请注意,此信息不是包含在命令给出的帮助中:

aria2c -h

但在手册页读取内容如下:

man aria2c

对于其他类型的文件,aria2c它可以很好地工作,并按照指示适当地重命名:

andrew@athens:~$ aria2c -d $HOME/test -o testing.jpg http://www.andrews-corner.org/images/fluxbox.jpg
[#3f8528 32KiB/417KiB(7%) CN:1 DL:87KiB ETA:4s]                                               
06/24 18:29:14 [NOTICE] Download complete: /home/andrew/test/testing.jpg

Download Results:
gid   |stat|avg speed  |path/URI
======+====+===========+=======================================================
3f8528|OK  |   312KiB/s|/home/andrew/test/testing.jpg

Status Legend:
(OK):download completed.

很抱歉给大家带来坏消息……

相关内容