Skip to content

Instantly share code, notes, and snippets.

@VirtuBox
Created October 7, 2016 07:23
Show Gist options
  • Save VirtuBox/e8a21d0a7d5fff800f455619e00b3b96 to your computer and use it in GitHub Desktop.
Save VirtuBox/e8a21d0a7d5fff800f455619e00b3b96 to your computer and use it in GitHub Desktop.
Simple script to optimize your images with optipng and jpegoptim
#!/bin/bash
cd /var/www
find . -name *.jp* | xargs jpegoptim --strip-all -m76
find . -iname '*.png' -print0 | xargs -0 optipng -o7 -preserve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment