#!/bin/bash #---------------------------------------------------- # Author: Florian "Bluewind" Pritz # # Copyright (C) 2008-2009 Florian Pritz # # Licensed under GNU General Public License v3 # (see COPYING for full license text) # #---------------------------------------------------- # called by incrond to manage ~/drop #---------------------------------------------------- for file; do case $(file -b --mime-type "$file") in application/x-bittorrent) mv "$file" /mnt/mistral/flo/torrent/watch ;; *) # nothing ;; esac done