#!/bin/bash for file; do case $(file -b --mime-type "$file") in application/x-bittorrent) mv "$file" /mnt/mistral/flo/torrent/watch ;; *) # nothing ;; esac done