#!/usr/cs/bin/csh -f

#
# This script runs weekly via AT.  You need to copy this into a workstation's
# local bin directory.  Protect it from general reading because of the password
# below.  You need to do this since shell scripts don't run authenticated.
#


log -x -pipe clisp << FOO >>& /dev/null
anthocyanin
FOO

# Clean up trash left from last time...
/afs/cs.cmu.edu/project/clisp-1/archive-ftp/bin/cleanup-ftp-trash

# Begin updating the CL archive...
#/afs/cs.cmu.edu/project/clisp-1/archive-ftp/bin/archive-get &

# Begin updating the X3J13 archive...
/afs/cs.cmu.edu/project/clisp-1/archive-ftp/bin/x3j13-get &

# Begin updating the compiler committee issues...
#/afs/cs.cmu.edu/project/clisp-1/archive-ftp/bin/compiler-get &

exit 0
