| jan99.tar |
Listing 1: new.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 /* End of File */
|