]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/dialog/samples/infobox2
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / dialog / samples / infobox2
1 #! /bin/sh
2 # $Id: infobox2,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         --title "INFO BOX" "$@" \
13         --infobox "Hi, this is an information box. It is
14 different from a message box: it will
15 not pause waiting for input after displaying
16 the message. The pause here is only introduced
17 by the sleep command within dialog.
18 You have $left $unit to read this..." 0 0
19 left=`expr $left - 1`
20 test $left = 1 && unit="second"
21 done