Random Useful Links / Future Entries

Useful tidbits, recipes and cheatsheets

$ 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