Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 64b1f018b699df0f3902101f0d5f1070 > files > 69

cdialog-0.9b-2mdk.ppc.rpm

#!/bin/sh
DIALOG=${DIALOG=dialog}

$DIALOG --title "MESSAGE BOX" --clear \
        --msgbox "Hi, this is a simple message box. You can use this to \
                  display any message you like. The box will remain until \
                  you press the ENTER key." 10 41

case $? in
  0)
    echo "OK";;
  255)
    echo "ESC pressed.";;
esac