]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/msgbox6a
Merge OpenSSL 1.0.2n.
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / msgbox6a
1 #!/bin/sh
2 # $Id: msgbox6a,v 1.5 2010/01/13 10:26:52 tom Exp $
3 # this differs from msgbox3 by making a window small enough to force scrolling.
4
5 . ./setup-vars
6
7 width=35
8 while test $width != 61
9 do
10 $DIALOG --title "MESSAGE BOX (width $width)" --clear "$@" \
11         --msgbox "\
12         .a .b .c .d .e .f .g .h .j .i .j .k .l .m .n .o .p .q .r .s .t .u .v .w .x .y .z
13         .A .B .C .D .E .F .G .H .J .I .J .K .L .M .N .O .P .Q .R .S .T .U .V .W .X .Y .Z
14 " 10 $width
15 test $? = $DIALOG_ESC && break
16 width=`expr $width + 1`
17 done