When I download a torrent file with aria2c, it always try to parse it and add a torrent task, but all I want is get that file.
Is it possible to stop aria2c from doing so? I didn't seem to find an option in manual
aria2c "${URL}" --follow-torrent=false
From aria2's manual:
--follow-torrent=true|false|mem- Iftrueormemis specified, when a file whose suffix is.torrentor content type isapplication/x-bittorrentis downloaded,aria2parses it as atorrentfile and downloads files mentioned in it. Ifmemis specified, atorrentfile is not written to the disk, but is just kept in memory. Iffalseis specified, the.torrentfile is downloaded to the disk, but is not parsed as atorrentand its contents are not downloaded.
Default: true