Skip to content

Instantly share code, notes, and snippets.

@julienbourdeau
Created September 18, 2014 15:47
Show Gist options
  • Save julienbourdeau/11503833c5af334cf770 to your computer and use it in GitHub Desktop.
Save julienbourdeau/11503833c5af334cf770 to your computer and use it in GitHub Desktop.
Find and compress JPG and PNG images (using optipng and jpegoptim) with command line
find . -name "*.png" -exec optipng '{}' \;
find . -name "*.jpg" -exec jpegoptim '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment