Skip to content

Instantly share code, notes, and snippets.

@JKirchartz
Created July 22, 2016 19:00
Show Gist options
  • Save JKirchartz/791dcabcc464db3c910ee7eac0c08daf to your computer and use it in GitHub Desktop.
Save JKirchartz/791dcabcc464db3c910ee7eac0c08daf to your computer and use it in GitHub Desktop.
A short script to fix folders worth of iPhone's EXIF-oriented images, so they're flipped the correct way, instead of upside-down like dumb iPhone photos.
#! /bin/bash
find . -iname "*.jpg" -type f -exec mogrify -auto-orient '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment