我在服务器上使用带有 WEB GUI 的 transmission-daemon。我想知道是否可以不用每次都单击添加种子然后粘贴磁力链接,而是在终端 (SSH) 中使用带有文件的命令(例如使用 wget)来调用它,然后它会下载文件中包含链接的种子。
答案1
这样就可以了。
对于.torrent
文件:
首先,您需要将.torrent
文件上传到服务器上的目录。然后,请按照以下步骤操作:
打开终端并确保到
cd
包含文件的目录.torrent
。加上单个
.torrent
文件到transmission-daemon
,请在终端中运行以下命令:
transmission-remote -n 'transmission:transmission' -a torrent_file_name.torrent
- 加上全部
.torrent
目录中的文件transmission-daemon
,请在终端中运行以下命令:
find . -maxdepth 1 -type f -name '*.torrent' -exec transmission-remote -n 'transmission:transmission' -a {} \;
对于磁力链接 URL:
创建一个文件并命名
magnet.links
,然后将磁力链接 URL 每行添加到文件中。请避免创建任何空行。在第一行添加第一个链接,然后按,Enter然后在第二行添加第二个链接,依此类推。最后一行后不要按Enter,只需保存文件并退出。打开终端并
cd
进入包含该文件的目录magnet.links
。复制并粘贴以下代码到终端,然后按Enter:
file="magnet.links"
while IFS= read -r line
do
transmission-remote -n 'transmission:transmission' -a $line
done <"$file"