#!/bin/sh # # Tar all torrents in a directory and its subdirectories # TORRENTDIR=~/multimedia cd $TORRENTDIR rm -f torrents.tar.gz find . -type f -name '*.torrent' -exec tar rvf torrents.tar '{}' ';' gzip -9 torrents.tar .