summaryrefslogtreecommitdiff
path: root/Build/source/utils/dialog/dialog-1.1-20080819/samples/inputbox-both
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20080819/samples/inputbox-both')
-rwxr-xr-xBuild/source/utils/dialog/dialog-1.1-20080819/samples/inputbox-both38
1 files changed, 0 insertions, 38 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20080819/samples/inputbox-both b/Build/source/utils/dialog/dialog-1.1-20080819/samples/inputbox-both
deleted file mode 100755
index c5294e7bcc7..00000000000
--- a/Build/source/utils/dialog/dialog-1.1-20080819/samples/inputbox-both
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# $Id: inputbox-both,v 1.1 2005/12/05 23:13:59 tom Exp $
-: ${DIALOG=dialog}
-
-tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$
-trap "rm -f $tempfile" 0 1 2 5 15
-
-$DIALOG --title "INPUT BOX" --clear \
- --extra-button \
- --help-button \
- --inputbox "Hi, this is an input dialog box. You can use \n
-this to ask questions that require the user \n
-to input a string as the answer. You can \n
-input strings of length longer than the \n
-width of the input box, in that case, the \n
-input field will be automatically scrolled. \n
-You can use BACKSPACE to correct errors. \n\n
-Try entering your name below:" 16 51 2> $tempfile
-
-retval=$?
-
-case $retval in
- 0)
- echo "Input string is `cat $tempfile`";;
- 1)
- echo "Button 1 (Cancel) pressed.";;
- 2)
- echo "Button 2 (Help) pressed.";;
- 3)
- echo "Button 3 (Extra) pressed.";;
- 255)
- if test -s $tempfile ; then
- cat $tempfile
- else
- echo "ESC pressed."
- fi
- ;;
-esac