Skip to content

Instantly share code, notes, and snippets.

@henriquegogo
Created December 20, 2014 01:58
Show Gist options
  • Save henriquegogo/89f02c1b8e8b8a50cc47 to your computer and use it in GitHub Desktop.
Save henriquegogo/89f02c1b8e8b8a50cc47 to your computer and use it in GitHub Desktop.
Resize all images from folder
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