#!/bin/sh # # Tar all torrents in a directory and its subdirectories # TORRENTDIR=~/multimedia cd $TORRENTDIR IFS=" " files=$(find . -type f -name '*.torrent') tar cvzf torrents.tar.gz $files .