#! /bin/csh -f # Last modified on Thu Jan 15 19:24:46 1987 by stolfi #================================================ # Usage: bibtex-new [options...] # # Prints the computational geometry catalog entries that # were touched since the last execution of bibtex-all. # # This command assumes the current directory contains zero or more # files called [A-Z][A-Z]-[0-9]*, plus the dummy file bibprinted.date # that was creted by the last bibtex-all command. # The options are those of bibtex. #==================================================================== # Check if all args are options: set texopt="" while ( ( $#argv > 0 ) && ( "$1" =~ -* ) ) set texopt= ( $texopt $1 ) shift end if ( $#argv != 0 ) then echo "Usage: bibtex-new [options...]" exit 1 endif bibtex $texopt `biblist-new` #================================================