1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/bin/sh CONVERT_CHECK=`convert -version` if [ $? -ne 0 ] then echo "" echo "INSTALL imagemagick" echo "" echo " sudo apt-get install imagemagick" exit 1 fi find oven_control/images -name *.png -exec convert {} -strip {} \;