mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-01-03 16:52:31 +01:00
bash: add transmission-export-magnets.bash
This commit is contained in:
parent
0caa59268c
commit
78777826c7
16
bash/transmission-export-magnets.bash
Executable file
16
bash/transmission-export-magnets.bash
Executable file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Get the number of torrents, begins from 2 (1 is header line), the last
|
||||
# line is SUM.
|
||||
TORRENTS=$(transmission-remote -l|wc -l)
|
||||
CURRENT=1
|
||||
|
||||
# until $CURRENT equals $TORRENTS ?
|
||||
until [ $CURRENT -gt $TORRENTS ]
|
||||
do
|
||||
# get the information for $CURRENT? Grep the magnet line and cut out the
|
||||
# frist field ("Magnet: ") using awk?
|
||||
transmission-remote -l -t $CURRENT -i | grep -i magnet | awk -F': ' '{print $2}'
|
||||
# increase $CURRENT
|
||||
((CURRENT++))
|
||||
done
|
Loading…
Reference in New Issue
Block a user