diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-01-21 09:49:19 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-01-21 09:49:19 +0000 |
commit | c56717f989a201882c2faa6adc8d8e4c10613d84 (patch) | |
tree | 218dd43dce20dd0a53a1e4dd30a404692329d7d7 /Build/source/utils/dialog/dialog-1.1-20080819/samples/gauge0-input-fd | |
parent | cec0352ea4342dd640170abf7a8209092f9dc6e3 (diff) |
dialog 1.1-20100119
git-svn-id: svn://tug.org/texlive/trunk@16796 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20080819/samples/gauge0-input-fd')
-rwxr-xr-x | Build/source/utils/dialog/dialog-1.1-20080819/samples/gauge0-input-fd | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20080819/samples/gauge0-input-fd b/Build/source/utils/dialog/dialog-1.1-20080819/samples/gauge0-input-fd deleted file mode 100755 index dde176fdc04..00000000000 --- a/Build/source/utils/dialog/dialog-1.1-20080819/samples/gauge0-input-fd +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# $Id: gauge0-input-fd,v 1.2 2008/07/22 23:49:26 tom Exp $ -# modified "gauge0" script to use "--input-fd" option. -: ${DIALOG=dialog} - -exec 3<&0 -PCT=10 -( -sleep 1 -while test $PCT != 110 -do -cat <<EOF -XXX -$PCT -The new\n\ -message ($PCT percent) -XXX -EOF -PCT=`expr $PCT + 10` -sleep 1 -done -) | - -$DIALOG --title "GAUGE" --input-fd 3 --gauge "Hi, this is a gauge widget" 0 0 0 - -exec 3<&- |