freebsd-dev/gnu/usr.bin/dialog/TESTS/msgbox
Andrey A. Chernov c8389f985d Moved from ports, arrow keys allowed to edit input,
back tab key understanded now
1994-10-08 15:16:41 +00:00

15 lines
355 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 \
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