Skip to content

Instantly share code, notes, and snippets.

@hgc81538
Created June 28, 2019 05:18
Show Gist options
  • Save hgc81538/0eae2387e77f1912dddc4c9b2a10895f to your computer and use it in GitHub Desktop.
Save hgc81538/0eae2387e77f1912dddc4c9b2a10895f to your computer and use it in GitHub Desktop.
Bash batch processing
for file in *.png; do convert $file -rotate 90 rotated-$file; done
# ref: https://www.howtogeek.com/109369/how-to-quickly-resize-convert-modify-images-from-the-linux-terminal/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment