Created
July 22, 2016 19:00
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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