Sophie

Sophie

distrib > Mandriva > 9.1 > i586 > by-pkgid > a98d94aea8f8543cb7be00ff60cf2ddb > files > 69

cdialog-0.9b-2mdk.i586.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