]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/infobox4
file: upgrade to 5.43.
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / infobox4
1 #! /bin/sh
2 # $Id: infobox4,v 1.6 2019/12/10 23:37:10 tom Exp $
3
4 . ./setup-vars
5
6 left=10
7 unit="seconds"
8 while test $left != 0
9 do
10
11 $DIALOG --sleep 1 \
12         --begin 0 5 \
13         --title "INFO BOX" "$@" \
14         --infobox "Hi, this is an information box. It is
15 different from a message box: it will
16 not pause waiting for input after displaying
17 the message. The pause here is only introduced
18 by the sleep command within dialog.
19 You have $left $unit to read this..." 0 0
20 left=`expr $left - 1`
21 test "$left" = 1 && unit="second"
22 done