用于 torrent 文件的 LS 命令

use*_*263 2 linux bittorrent command-line ubuntu

我有一个充满 torrent 文件的目录,我必须下载所有这些文件;但问题是我的远程服务器有磁盘限制,文件大小各不相同(100MB~8GB),如果我添加所有种子文件,它们都不会被完全下载;所以我需要一个命令来列出我所有的种子文件以及它们的大小,稍后选择并添加到下载列表中。

注意:远程服务器 -> LINUX_UBUNTU_9.10 // SSH

所以我需要一个命令

torrentls
Run Code Online (Sandbox Code Playgroud)

输出类似于:

file1.torrent     1111MB
file2.torrent     222MB
file3.torrent     3333MB
file4.torrent     444MB
file5.torrent     5555MB
Run Code Online (Sandbox Code Playgroud)

Apa*_*che 5

好的。第二次去。:)

TorrentInfo python 脚本(通常你在 Linux 发行版上安装了 python):
http : //vrai.net/project.php?project=torrentinfo
torrentinfo *.torrent | grep size

或者只是:(torrentinfo *.torrent如页面所示)