web-dev-qa-db-ja.com

aria2cの-oパラメーターはダウンロードしたファイルの名前を変更できません

aria2c -S  /home/se.torrent

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

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

ダウンロードしたファイルを/ tmpにok.mkvとして保存します。

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

ダウンロードした名前を/tmp/ok.mkvに変更することはできません。
/tmp/test.mkvコマンドの実行時。 enter image description here

aria2c -hのマニュアルには、次のような文字列はありません。
NOTE: You cannot specify a file name for Metalink or BitTorrent downloads.

2

Manページから、.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.

この情報はnotであり、コマンドで提供されるヘルプに含まれていることに注意してください。

aria2c -h

ただし、manページでは、次のように読み取られます。

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.

悪いニュースの担い手になってごめんなさい...

3
andrew.46