#
#	agree
#
#	WARNING: because of the way 'setup' is run from the CMD
#	directory, this script will *assume* that the current
#	working directory is src/CMD -- running this script from
#	CMD/utils *WILL*NOT*WORK*!!!			// Amit, 1993-01-26
#
if test $# = 0
then
    set ""
fi
while true
do
    sh utils/printf %s "$@""? "
    read a
    case "$a" in

    y|Y|yes|YES|Yes) exit 0;;
    n|N|no|NO|No) exit 1;;

    esac
done
