xref: /freebsd/contrib/dialog/samples/gauge2 (revision aa0a1e58)
1#!/bin/sh
2# $Id: gauge2,v 1.8 2010/01/13 10:26:52 tom Exp $
3# The original dialog program assumed the first line after the first "XXX"
4# was a percentage value (compare with "gauge" script).
5
6. ./setup-vars
7
8(echo "10" ; sleep 2 ;
9
10cat <<"EOF"
11XXX
12The new
13\n
14message
15XXX
1620
17EOF
18sleep 2;
19
20echo "75" ; sleep 1
21echo "100") | \
22
23$DIALOG --title "GAUGE" "$@" --gauge "Hi, this is a gauge widget" 10 40 0
24
25if [ "$?" = $DIALOG_ESC ] ; then
26	echo ""
27	echo "Box closed !"
28fi
29