Skip to content

Instantly share code, notes, and snippets.

@chrishiestand
Created June 25, 2015 01:20
Show Gist options
  • Save chrishiestand/5528bc69116155fb0d7e to your computer and use it in GitHub Desktop.
Save chrishiestand/5528bc69116155fb0d7e to your computer and use it in GitHub Desktop.
Size Optimize Images for the web
find . -iname '*.png' -exec pngcrush -brute -reduce -ow {} \;
find . \( -iname '*.jpg' -o -iname '*.jpeg' \) -exec jpegoptim {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment