Forked from pawelszydlo/transmission_remove_finished.sh
Created
March 7, 2020 04:08
-
-
Save kryptek/7dbc0d2efb3b18ee857b5a8aa88ddf9c to your computer and use it in GitHub Desktop.
Script to clear finished torrents from transmission-daemon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# port, username, password | |
SERVER="localhost:9091 --auth user:pass" | |
# use transmission-remote to get torrent list from transmission-remote list | |
TORRENTLIST=`transmission-remote $SERVER --list | sed -e '1d' -e '$d' | awk '{print $1}' | sed -e 's/[^0-9]*//g'` | |
# for each torrent in the list | |
for TORRENTID in $TORRENTLIST | |
do | |
INFO=$(transmission-remote $SERVER --torrent $TORRENTID --info) | |
echo -e "Processing #$TORRENTID - $(echo $INFO | sed -e 's/.*Name: \(.*\) Hash.*/\1/')" | |
# check if torrent download is completed | |
DL_COMPLETED=`echo $INFO | grep "Done: 100%"` | |
# check torrents current state is | |
STATE_STOPPED=`echo $INFO | grep "State: Seeding\|State: Stopped\|State: Finished\|State: Idle"` | |
# if the torrent is "Stopped", "Finished", or "Idle after downloading 100%" | |
if [ "$DL_COMPLETED" ] && [ "$STATE_STOPPED" ]; then | |
echo "Torrent #$TORRENTID is completed. Removing torrent from list." | |
transmission-remote $SERVER --torrent $TORRENTID --remove | |
else | |
echo "Torrent #$TORRENTID is not completed. Ignoring." | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment