mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-08 10:09:22 +01:00
17 lines
488 B
Bash
Executable File
17 lines
488 B
Bash
Executable File
#!/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
|