Skip to content

Instantly share code, notes, and snippets.

@Wilker
Created May 16, 2017 17:20
Show Gist options
  • Save Wilker/64f930d882c4d8785a565955ab5f75a9 to your computer and use it in GitHub Desktop.
Save Wilker/64f930d882c4d8785a565955ab5f75a9 to your computer and use it in GitHub Desktop.
mkdir ./converted/
for file in ./*.jpeg ; do
convert "$file" -rotate $1 "${file%.JPG}"_rotated.JPG
done
mv *.*rotated* ./converted/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment