Useful tidbits, recipes and cheatsheets
testdisk
$ for f in *.bmp; do convert "$i" "$(basename "$i" .bmp).png" ; done equivalent > for %f in ( *.bmp ) do C:\imagemagick\convert "%f" "%~nf.png" ; done beware this particular example, convert is a windows command