#!/bin/csh
#
echo " "
echo "========================================================================"
echo " "
echo "find all *~ files/links..."
find . -name "*~" -type fl -print
echo " "
echo "========================================================================"
echo " "
echo "find all object (*.o) files/links..."
find . -name "*.o" -type fl -print
echo " "
echo "========================================================================"
echo " "
echo " "
echo "find all exectuables files/links..."
find . -name "*.e" -type fl -print
echo " "
echo "========================================================================"
echo " "
echo " "
echo "find all library (*.a) files/links..."
find . -name "*.a" -type fl -print
echo " "
echo "========================================================================"
echo " "
echo "find all binaries with the IRAF command: rmbin -n ."
rmbin -n .
echo " "
echo "N.B.  All binaries can be deleted (with verification) with the command:"
echo " "
echo "  rmbin -e .imh .pix -i ."
echo " "
#

