Last active
December 19, 2015 11:59
-
-
Save realdeprez/5951838 to your computer and use it in GitHub Desktop.
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
#!/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