#!/bin/csh
### --- The University of Birmingham 1999. ----------------------------
### $poplocal/local/ftp/bin/mkbugfixls-lrt
# Aaron Sloman -- Mon Aug 30 11:33:56 BST 1999

# ensure this is invoked in the ftp bugfixes directory

cd $poplocal/local/ftp/bugfixes

pwd

echo "creating poplog-bugfixes tar file"

ls -l poplog-bugfixes.tar.gz

rm -f poplog-bugfixes.tar.gz

tar cf - pop | gzip > poplog-bugfixes.tar.gz

ls -l poplog-bugfixes.tar.gz

echo "removing old ALLFILES"

ls -l ALLFILES

rm -f ALLFILES

ls -FglRt > ALLFILES

ls -l ALLFILES
echo "done"
