diff options
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20080819/samples/progress')
-rwxr-xr-x | Build/source/utils/dialog/dialog-1.1-20080819/samples/progress | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20080819/samples/progress b/Build/source/utils/dialog/dialog-1.1-20080819/samples/progress deleted file mode 100755 index 82a72bb9b3e..00000000000 --- a/Build/source/utils/dialog/dialog-1.1-20080819/samples/progress +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# $Id: progress,v 1.1 2006/01/18 23:32:18 tom Exp $ -: ${DIALOG=dialog} - -tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$ -trap "rm -f $tempfile" 0 1 2 5 15 - -ls -1 >$tempfile -( -while true -do -read text -test -z "$text" && break -ls -ld "$text" -sleep 1 -done <$tempfile -) | - -$DIALOG --title "PROGRESS" --progressbox 20 70 |