xref: /freebsd/contrib/dialog/samples/msgbox3 (revision f05cddf9)
1#!/bin/sh
2# $Id: msgbox3,v 1.7 2010/01/13 10:26:52 tom Exp $
3
4. ./setup-vars
5
6width=35
7while test $width != 61
8do
9$DIALOG --title "MESSAGE BOX (width $width)" --clear --no-collapse "$@" \
10        --msgbox "\
11	H   H EEEEE L     L      OOO
12	H   H E     L     L     O   O
13	HHHHH EEEEE L     L     O   O
14	H   H E     L     L     O   O
15	H   H EEEEE LLLLL LLLLL  OOO
16
17Hi, this is a simple message box.  You can use this to \
18display any message you like.  The box will remain until \
19you press the ENTER key." 15 $width
20test $? = $DIALOG_ESC && break
21width=`expr $width + 1`
22done
23