Changes

Jump to navigation Jump to search
393 bytes added ,  18:52, 20 September 2018
Line 159: Line 159:     
transmission-remote -n 'transmission:transmission' -q
 
transmission-remote -n 'transmission:transmission' -q
 +
== Move Files Script ==
 +
<nowiki># Get a list of all of the torrent files matching `grep`, and output to a (temp) text file:
 +
transmission-remote -l | grep "Good" > list.txt
 +
 +
Loop through all lines in the text file, capture first column into $value1, move it!
 +
while IFS=" " read -r value1 remainder;do transmission-remote -t $value1 --move /home/pat/Downloads/seeding/;done < list.txt</nowiki>

Navigation menu