#!/bin/sh gen() { tcc ir.c lex.c impl.c peephole.c proc.c -run main.c test.lang\ | dot -Tpdf -o out.pdf } gen mupdf out.pdf & while true; do inotifywait -e modify -r . gen killall -SIGHUP mupdf done