summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/dialog/TESTS/msgbox
blob: 7f1b1f8089e3630fed87054c998fe148fb7e9491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
DIALOG=${DIALOG=/usr/bin/dialog}

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

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