#!/bin/sh # (c) Thomas Guettler March 2001 http://www.thomas-guettler.de # This script is in the public domain # Feedback welcome # # This fourliner is a WYSIWYG frontend for latex! # I use this to update foo.dvi as soon foo.tex changes # xdvi is clever and reloads the file as soon it gets changed. # Beeps if something is wrong. while /bin/true ; do make || echo -e \\a sleep 2 done