diff options
author | Karl Berry <karl@freefriends.org> | 2011-08-26 18:02:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-08-26 18:02:11 +0000 |
commit | 94d8eec871be0ca8f1b658e064b3786333b288ef (patch) | |
tree | 3ff9129ebe68e22df5eea8e366db439db5ecd4a2 /Build/source/utils/dialog/dialog-1.1-20110707/samples/infobox5 | |
parent | 4301ee320e58fbb4194ba20b63f75085557d0766 (diff) |
rm (tc)dialog, rely on system program
git-svn-id: svn://tug.org/texlive/trunk@23695 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20110707/samples/infobox5')
-rwxr-xr-x | Build/source/utils/dialog/dialog-1.1-20110707/samples/infobox5 | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20110707/samples/infobox5 b/Build/source/utils/dialog/dialog-1.1-20110707/samples/infobox5 deleted file mode 100755 index 58512c90e57..00000000000 --- a/Build/source/utils/dialog/dialog-1.1-20110707/samples/infobox5 +++ /dev/null @@ -1,39 +0,0 @@ -#! /bin/sh -# $Id: infobox5,v 1.7 2011/01/18 09:19:09 tom Exp $ -# get rid of all flickering by constructing a script unroll the loop, leaving -# us in curses-mode until we're done counting. - -. ./setup-vars - -. ./setup-tempfile - -left=10 -unit="seconds" -last='\' - -cat >>$tempfile <<EOF -$DIALOG $last -EOF - -while test $left != 0 -do - -cat >>$tempfile <<EOF - --sleep 1 \ - --begin 0 5 \ - --title "INFO BOX" $* \ - --infobox "Hi, this is an information box. It is -different from a message box: it will -not pause waiting for input after displaying -the message. The pause here is only introduced -by the sleep command within dialog. -You have $left $unit to read this..." 0 0 $last -EOF - -left=`expr $left - 1` -test $left = 1 && unit="second" -done - -echo >>$tempfile - -. $tempfile |