#!/bin/bash set -e for f in tiny_*.sh; do ./$f | octave ; done for f in *.png; do pngquant 256 $f -f -o $f; zopflipng $f -y $f; done