Created
March 31, 2016 09:10
-
-
Save duzvik/6d22ff176360c8d36f53e9baea379409 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for png in `find . -name '*.png'` | |
| do | |
| name=`basename $png` | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/pngcrush -revert-iphone-optimizations $png RevertedImages/$name | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment