#! /bin/bash
# Last edited on 2010-08-06 11:16:09 by stolfilocal

for ifile in */*.{tiff,bmp} ; do 
  ofile="${ifile%.*}.png"
  echo "${ifile} --> ${ofile}"
  convert ${ifile} ${ofile} 
done
  
