HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: //usr/share/doc/dialog-1.2/samples/msgbox6
#!/bin/sh
# $Id: msgbox6,v 1.5 2010/01/13 10:26:52 tom Exp $
# this differs from msgbox3 by making a window small enough to force scrolling.

. ./setup-vars

width=35
while test $width != 61
do
$DIALOG --title "MESSAGE BOX (width $width)" --clear "$@" \
        --msgbox "\
	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
	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
" 10 $width
test $? = $DIALOG_ESC && break
width=`expr $width + 1`
done