#!/bin/bash

# Copyright Jean-Philippe Guillemin <[email protected]>. This program is free software;
# you can redistribute it and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2 of the License,
# or (at your option) any later version. Please take a look at http://www.gnu.org/copyleft/gpl.htm

convert -thumbnail "$1" "$2/folder.jpg" "$3" 1>/dev/null 2>&1 || \
convert -thumbnail "$1" "$2/.folder.jpg" "$3" 1>/dev/null 2>&1 || \
convert -thumbnail "$1" "$2/folder.png" "$3" 1>/dev/null 2>&1 || \
convert -thumbnail "$1" "$2/cover.jpg" "$3" 1>/dev/null 2>&1 || \
rm -f "$3"
exit 1