home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
utils
/
shell
/
dialog-0.000
/
dialog-0
/
dialog-0.6c
/
samples
/
msgbox
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-08-07
|
349 b
|
15 lines
#!/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