Shorter hints, which mean more space for actions in the tutorial
[naja.git] / screenshots / optimize.sh
1 #!/bin/sh
2
3 find . -name '*.png' | while read fn; do
4         optipng -o4 -preserve "$fn"
5         advpng -z4 "$fn"
6 done