restoring from backup and fixing things

Ask for help and report issues not specific to either the Mac OS X or GTK+ versions of Transmission
Post Reply
bjlockie
Posts: 9
Joined: Sat Mar 09, 2019 5:52 am

restoring from backup and fixing things

Post by bjlockie »

I'm having trouble restoring my backup .torrent files.
I got them to show up but I had to verify all the data with

Code: Select all

transmission-remote -t all --find /files
$ transmission-remote --torrent all --verify
Everything is paused and I want to start everything that is complete.
I tried this but it doesn't seem to work:

Code: Select all

$ transmission-remote --list | awk '{if ($2=="100%"){print $0;transmission-remote --torrent $1 --start}}'
bjlockie
Posts: 9
Joined: Sat Mar 09, 2019 5:52 am

Re: restoring from backup and fixing things

Post by bjlockie »

This worked:

Code: Select all

transmission-remote --list | awk '{if ($2=="100%"){print system("/usr/bin/transmission-remote --torrent "$1" --start")}}'
Post Reply