使用 CLI 客户端从 torrent 下载特定文件

使用 CLI 客户端从 torrent 下载特定文件

我希望能够使用 CLI 客户端从 magnet/.torrent 下载特定文件(不是所有文件)用于我的无头服务器。我知道 GUI 客户端通常有此选项,但我正在寻找命令行工具。

尽管这个问题回答可用的选项,它不迎合这个特定的问题

答案1

使用命令行选择单个文件是该transmission-remote命令的一项功能,由该包提供transmission-cli

让我们看看这个命令手册页

-f --files
   Get a file list for the current torrent(s)
-g --get all | file-index | files
   Mark file(s) for download. all marks all all of the torrent's files for 
   downloading, file-index adds a single file to the download list, and files 
   adds multiple files to the download list, such as "-g1,3-5" to add files 
   #1, #3, #4, and #5 to the download list.
-G --no-get all | file-index | files

相关内容