#!/bin/csh
### --- The University of Birmingham 1996. --------------------------------
### $poplocal/local/ftp/bin/mkmenutar
# Aaron Sloman Sat Jan  4 11:18:06 GMT 1997
# changed Mon Aug 30 16:00:55 BST 1999

# Ensure this is invoked in the ftp directory

cd $poplocal/local/ftp

pwd

echo "removing menu.tar.gz"

ls -l menu.tar.gz

rm menu.tar.gz

echo "rebuilding menu.tar file"

cp -p new/install.txt menu/INSTALL.TXT

tar cf - menu pui | gzip > menu.tar.gz

ls -l menu.tar.gz

echo "done"
