#!/usr/princeton/bin/tcsh # A little t shell script to bibtex all bibliography units # created with the bibunits.sty latex style file. # # Thorsten Hansen foreach auxfile (bu*.aux) echo bibtex ` basename $auxfile .aux` bibtex `basename $auxfile .aux` end