Created
June 28, 2019 05:18
-
-
Save hgc81538/0eae2387e77f1912dddc4c9b2a10895f to your computer and use it in GitHub Desktop.
Bash batch processing
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
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