]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/dialog/samples/infobox3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / dialog / samples / infobox3
1 #! /bin/sh
2 # $Id: infobox3,v 1.5 2010/01/13 10:20:03 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 5 0 \
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