#! /bin/csh -f # Last modified on Thu Jan 15 18:15:59 1987 by stolfi #================================================ # Usage: biblist-new # # Lists the tags of all computational geometry catalog entries that # were touched since the last execution of bibtex-all, in # order of last-modify-date (most recent first). #================================================ if ($#argv > 0) then echo "Usage: biblist-new" exit 1 endif ls -t | egrep '^[A-Z][A-Z]-[0-9][0-9]*$|^bibprinted.date' \ | sed '/bibprinted.date/,$d' #================================================