#!/bin/sh

find images/ -name "*.png" \
  -exec echo "Processing {}" \; \
  -exec optipng -o7 -quiet "{}" \;
