#!/usr/bin/env bash for f in $(find . -name "*.dot"); do dot -Tpng $f > $f.png; done;