1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-26 13:18:35 -06:00
random/dedup_qbt_torrents.sh

15 lines
503 B
Bash

#!/bin/sh
# I have st up qBittorrent to save the .torrent files for both incomplete and complete
# torrents in the same folder, so it creates duplicate files.
# This script removes duplicate .torrent files form qBittorrent's .torrent backup folder.
# I run this as a cronjob on my server.
[ -z "$1" ] && echo "No folder provided!" && exit 1
find "$1" -name '* 1.torrent' -print0 | while read -d $'\0' f
do
if [ -f "$(echo "$f" | sed 's/ 1.torrent/.torrent/')" ]; then
rm "$f"
fi
done