
retval=$?
choice=`cat /tmp/checklist`

case $retval in
  0)
    echo $choice "chosen.";;
  1)
    echo "Cancel pressed.";;
  255)
    echo "Box closed.";;
esac

