xref: /freebsd/contrib/dialog/samples/msgbox (revision e9a994639b2af232f994ba2ad23ca45a17718d2b)
1#!/bin/sh
2# $Id: msgbox,v 1.8 2020/11/26 00:03:58 tom Exp $
3
4. ./setup-vars
5
6$DIALOG --title "MESSAGE BOX" --clear "$@" \
7        --msgbox "Hi, this is a simple message box. You can use this to \
8                  display any message you like. The box will remain until \
9                  you press the ENTER key." 10 41
10
11returncode=$?
12
13. ./report-button
14