NOTES: This script should run from the lists directory under ListProc Was written to run from cron and update a subset of lists per night, rather than every list. ie...if you wanted to do 1/2 of your lists one night and 1/2 the next you would have two cron entries with different input files. USAGE: script_name << input_file_name where input_file_name is a file containing list of the lists to update, one listname per line. #!/usr/local/bin/bash # This script was created by Bradley L. Peck, of CREN. Comments # and suggested changes should be sent to blp-pc@cren.net # last modification 10/27/98 while : do read FIRST ret=`echo $?` if [ $ret -eq 0 ] then echo $FIRST >> revdb.log; ../revdb update $FIRST >> revdb.log else exit fi done