qbittorrent-cli
qbittorrent-cli copied to clipboard
Feature: Resume multiple torrents
Is there a way to resume multiple torrents at once? Goal is to resume all "errored" torrents through cron.
So far, I was able to get the "hash" of all errored torrents, but I found out that I can't pass multiple hashes to qbt torrent resume
$(qbt torrent list -f errored -F json | grep -Eo '"hash":.*?[^\\]",' |awk -F':' '{print $2}' | awk 'match($0, /"[^"]*/) {print su
bstr($0, RSTART+1, RLENGTH-1)}')