# Listing 1: snew.ss
# Coffin test shell script
#
echo "Enter Password \c"
read any_string
./coffin -d $any_string 
if [ $? = 0 ]
then # good password
   echo "RUN THE PROGRAM"
else # bad password
   echo "ACCESS DENIED"
   exit 1
fi

