#!/bin/bash
# If there's room ...
find tiles/AA-* -name 'col???.pgm' | while read f ; do
  echo convert $f `dirname $f`/`basename $f .pgm`.png \&\& rm $f
  convert $f `dirname $f`/`basename $f .pgm`.png && rm $f
done
