ImageMagick ftw
Once upon a time I would write a decent batch file with a loop - but now I use the lazy method (assume Windows):
1. Do a 'dir' into a file:
c:\directory\>dir *.jpg > file.txt
2. Edit the file with a text-editor with column-editing ability (e.g., Ultra-edit)
3. Enable column editing and delete all the crap from file.txt so you just have the filenames
4. Select before every row and type the command to rotate before all the filenames:
convert -rotate 180
5. Rename file file.bat and run it
Anyone that does it any other way is doing it wrong. Amen.
