用于 torrent 文件的 LS 命令

用于 torrent 文件的 LS 命令

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

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

所以我需要一个像这样的命令

torrentls

输出类似如下内容:

file1.torrent     1111MB
file2.torrent     222MB
file3.torrent     3333MB
file4.torrent     444MB
file5.torrent     5555MB

答案1

好的。第二次。:)

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

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

答案2

您可以使用du -sk *.torrent

相关内容