Skip to content

Instantly share code, notes, and snippets.

@gliesche
Created January 7, 2014 15:15
Show Gist options
  • Save gliesche/8300771 to your computer and use it in GitHub Desktop.
Save gliesche/8300771 to your computer and use it in GitHub Desktop.
Resize all images in folder and save copy with suffix "_low"
for i in *; do convert $i -resize 1024x `basename "$i" .jpg`_low.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment