#!/bin/bash

find data -name "*.png" | while read FILE; do
    pngcrush -ow -q $FILE
done
