#!/bin/csh -f # # Runs archive remotely on the web site to sync up local copy of web # # written by Kevin P. Inscoe (kevin@inscoe.org) (1/26/99) # # global variables # # # Announce ourselves # /bin/echo "archive: archiving" `/bin/pwd` "to" $FILE "at" `/usr/bin/date` # # Begin # if ( -e $FILE ) /bin/rm -f $FILE /bin/tar cvf $FILE . /bin/compress $FILE /bin/echo "archive: archive" "of" `/bin/pwd` "to" $FILE "complete at" `/usr/bin/date`