#!/bin/csh
### --- The University of Birmingham 1999. ----------------------------
### $poplocal/local/ftp/bin/mkls-lrt
# Aaron Sloman -- Tue Jul 27 11:51:12 BST 1999

# ensure this is invoked in the ftp directory

cd $poplocal/local/ftp

pwd
echo "removing old file"

ls -l .ls-lrt.gz

rm -f .ls-lrt.gz

ls -FglRt | gzip > .ls-lrt.gz

ls -l .ls-lrt.gz
echo "done"
