Compress PNG images

This commit is contained in:
Andrew Miner
2016-05-07 16:38:18 -07:00
parent 6ccd3e4d82
commit 4fb606d587
1180 changed files with 12 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
find data -name "*.png" | while read FILE; do
pngcrush -ow -q $FILE
done