freebsd-dev/gnu/usr.bin/dialog/TESTS/msgbox
1994-11-16 14:47:17 +00:00

15 lines
314 B
Bash
Executable File

#!/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