xref: /freebsd/contrib/dialog/samples/infobox4 (revision c697fb7f)
1#! /bin/sh
2# $Id: infobox4,v 1.5 2010/01/13 10:20:03 tom Exp $
3
4. ./setup-vars
5
6left=10
7unit="seconds"
8while test $left != 0
9do
10
11$DIALOG --sleep 1 \
12	--begin 0 5 \
13	--title "INFO BOX" "$@" \
14        --infobox "Hi, this is an information box. It is
15different from a message box: it will
16not pause waiting for input after displaying
17the message. The pause here is only introduced
18by the sleep command within dialog.
19You have $left $unit to read this..." 0 0
20left=`expr $left - 1`
21test $left = 1 && unit="second"
22done
23