Created
December 20, 2014 01:58
-
-
Save henriquegogo/89f02c1b8e8b8a50cc47 to your computer and use it in GitHub Desktop.
Resize all images from folder
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 *.JPG; do convert $file -resize 1024x768 resized-$file; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment