Skip to content

Instantly share code, notes, and snippets.

@tagliala
Created January 21, 2015 14:39
Show Gist options
  • Save tagliala/7e2dcd600cc015b07a8a to your computer and use it in GitHub Desktop.
Save tagliala/7e2dcd600cc015b07a8a to your computer and use it in GitHub Desktop.
Recursively optimize images
find . -name "*.jpg" -type f -exec jpegtran -copy none -optimize -progressive -outfile {} {} \;
find . -name "*.png" -type f -exec optipng {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment