Skip to content

Instantly share code, notes, and snippets.

@sulram
Created May 28, 2014 18:13
Show Gist options
  • Save sulram/5d00e3a47d5d9910441d to your computer and use it in GitHub Desktop.
Save sulram/5d00e3a47d5d9910441d to your computer and use it in GitHub Desktop.
#!/bin/sh
for png in `find $1 -name *.png`;
do
echo "crushing $png"
pngcrush -rem cHRM -rem gAMA -rem iCCP -rem sRGB "$png" temp.png
mv -f temp.png $png
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment