Skip to content

Instantly share code, notes, and snippets.

@iammart
Created January 30, 2015 10:55
Show Gist options
  • Save iammart/324efc943ad07a1403a5 to your computer and use it in GitHub Desktop.
Save iammart/324efc943ad07a1403a5 to your computer and use it in GitHub Desktop.
Image Compression
# Resizing and compressing images using mogrify & jpegoptim
find hiresbk/ -iname "*.jpg" -exec mogrify -resize '1000>' -limit memory 32 -verbose {} \;
find hiresbk/ -iname "*.jpg" -exec jpegoptim --strip-all {} \; >> log.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment