#!/bin/bash

find . -type f -name "*.bmp" -print |
while read fromfile
do
	tofile=${fromfile%.*}.gif
	convert $fromfile $tofile
done

