Skip to content

Instantly share code, notes, and snippets.

@neomelonas
Last active August 29, 2015 14:11
Show Gist options
  • Save neomelonas/cb8d48e7669a3feea4c9 to your computer and use it in GitHub Desktop.
Save neomelonas/cb8d48e7669a3feea4c9 to your computer and use it in GitHub Desktop.
"Flop" a directory of images with ImageMagik
for file in /path/to/images/*.JPG; do
convert "$file" -flop "${file%.JPG}"_flopped.JPG
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment