#!/bin/sh
#
# $Id: odc-clean,v 2.2 1999/02/09 18:03:50 diego Exp $
#
tmpfiles=`echo *.spd *.spx *.od1 *.odc *.pa1 *.pa2 *.par`
echo "About to remove $tmpfiles"
echo -n "Are you sure? [N] "
read i
if [ "$i" = "Y" -o "$i" = "y" ] ; then
    echo "Removing $tmpfiles"
    /bin/rm -f $tmpfiles
fi
