#!/bin/csh 
# file: upload2asp
# last: Feb 23 2007 
## later I switched to rsync, much easier and faster

echo ==== copy new bigbook files into uploaddir 
cp -upr bigbook/* uploaddir/.

echo ==== remove big bdf and aux files
cd  uploaddir
rm -f coimbraprocs.pdf
rmtex

echo ==== copy cspm sty file too
cp ~/rr/tex/styles/cspm-asp2006.sty .

echo ==== now tar == takes ages
tar cfvj asp368.tar.bz2 uploaddir



