Skip to content

Instantly share code, notes, and snippets.

@realdeprez
Last active December 19, 2015 11:59
Show Gist options
  • Save realdeprez/5951838 to your computer and use it in GitHub Desktop.
Save realdeprez/5951838 to your computer and use it in GitHub Desktop.
#!/bin/sh
# resize all .jpg files in a folder, saving the small versions with a "_s" at the end of the filename
# http://even.li/imagemagick-sharp-web-sized-photographs/
ls *.jpg|while read i;do gm convert $i -resize "900x" -unsharp 2x0.5+0.5+0 -quality 98 `basename $i .jpg`_s.jpg;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment