mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-14 20:49:23 +01:00
17 lines
488 B
Bash
17 lines
488 B
Bash
|
#!/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
|