#!/bin/csh
-f
#FileClean
#This
script will delete excess maxplus2 files
#Satneev
Bhamra, October 25, 2001
echo
-n "WARNING! You are about to delete files, do you wish to continue
(y/n)?"
set
ans = $<
if (
"$ans" == "y" ) then
rm *.fit *.hif *.hex *.pin *.pof
*.rpt *.snf *.sym *.ttf *.vho *.cnf *.ndb *.mmf
echo "The excess files have been
removed."
exit
else
echo "No files have been
deleted."
exit
endif