Created
September 30, 2013 13:10
Revisions
-
andrewmcdonough created this gist
Sep 30, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ Without cropping mkdir converted for file in *.JPG; do convert "$file" -rotate 180 "converted/$file" ; done With a little cropping to clip the bike's seat from the photos: for file in *.JPG; do convert "$file" -crop 4000x2600 -rotate 180 -gravity center "converted/$file" ; done