Created
May 17, 2014 09:53
-
-
Save geoffroymontel/46f1cef9ea84dead1d4e to your computer and use it in GitHub Desktop.
Batch resize images to maximum width or height of 1024px
This file contains 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 i in books.original/*; do convert $i -resize 1024x1024\> books/$(basename $i); done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment