Skip to content

Instantly share code, notes, and snippets.

@ocean90
Created June 16, 2012 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ocean90/2941373 to your computer and use it in GitHub Desktop.
Save ocean90/2941373 to your computer and use it in GitHub Desktop.
Shell: Find PNG images and compress with PNGOUT
# Get PNGOUT from here: http://www.jonof.id.au/kenutils
find . -regex ".*\.\(png\)" | while read FILE; do
pngout -y "$FILE"
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment