tar -jvxf bilder.tar.bz2
cd bilder
for i in $(find . -name \*.bmp); do
  echo "convert $i $i.eps ...";
  convert $i $i.eps;
done
cd ..

