Files
2016-05-07 16:38:18 -07:00

6 lines
90 B
Bash
Executable File

#!/bin/bash
find data -name "*.png" | while read FILE; do
pngcrush -ow -q $FILE
done