fedarovich / qbittorrent-cli

Command line interface for QBittorrent
MIT License
291 stars 16 forks source link

How to list status of a single torrent ? #80

Closed rsoorajs closed 1 year ago

rsoorajs commented 1 year ago

currently it can list qbt torrent list all torrent files. how can i list, a single torrent file details using its hash ?

LordZozzy commented 1 year ago

One option is to use Powershell.

$torrentHash = [INSERT TORRENT'S HASHv1 HERE]
qbt torrent list -f all -F csv | ConvertFrom-Csv | ?{$_.Hash -eq $torrentHash}
rsoorajs commented 1 year ago

thanks