Skip to content

Instantly share code, notes, and snippets.

@giorgiofellipe
Created March 10, 2015 00:53
Show Gist options
  • Save giorgiofellipe/baff3527a557aa4cdcf9 to your computer and use it in GitHub Desktop.
Save giorgiofellipe/baff3527a557aa4cdcf9 to your computer and use it in GitHub Desktop.
OPTIMIZE IMAGES
#optimize all jpeg files
find . -name "*.jpg" -print0 | xargs -0 -I filename jpegtran -copy none -optimise -outfile filename filename
#optimize all png files
optipng -o7 *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment