This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

16 lines
391 B
Bash
Executable File

#!/bin/sh
# $Id: msgbox,v 1.3 2003/08/15 19:40:37 tom Exp $
: ${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