summaryrefslogtreecommitdiff
path: root/Build/source/utils/dialog/dialog-1.1-20080819/samples/form6
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20080819/samples/form6')
-rwxr-xr-xBuild/source/utils/dialog/dialog-1.1-20080819/samples/form670
1 files changed, 0 insertions, 70 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20080819/samples/form6 b/Build/source/utils/dialog/dialog-1.1-20080819/samples/form6
deleted file mode 100755
index f68dece5769..00000000000
--- a/Build/source/utils/dialog/dialog-1.1-20080819/samples/form6
+++ /dev/null
@@ -1,70 +0,0 @@
-#! /bin/sh
-# $Id: form6,v 1.1 2005/02/07 00:14:52 tom Exp $
-# form4 with --help-status
-: ${DIALOG=dialog}
-
-backtitle="An Example for the use of --form:"
-
-ids=`id|sed -e 's/([^)]*)//g'`
-uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'`
-gid=`echo "$ids" | sed -e 's/^.* gid=//' -e 's/ .*//'`
-
-user="$USER"
-home="$HOME"
-
-returncode=0
-while test $returncode != 1 && test $returncode != 250
-do
-exec 3>&1
-value=`$DIALOG --ok-label "Submit" \
- --help-status \
- --help-button \
- --item-help \
- --backtitle "$backtitle" \
- --form "Here is a possible piece of a configuration program." \
-20 50 0 \
- "Username:" 1 1 "$user" 1 10 -9 9 "Login name" \
- "UID:" 2 1 "$uid" 2 10 8 0 "User ID" \
- "GID:" 3 1 "$gid" 3 10 8 0 "Group ID" \
- "HOME:" 4 1 "$home" 4 10 40 0 "User's home-directory" \
-2>&1 1>&3`
-returncode=$?
-exec 3>&-
-
-show=`echo "$value" |sed -e 's/^/ /'`
-
- case $returncode in
- 1)
- "$DIALOG" \
- --clear \
- --backtitle "$backtitle" \
- --yesno "Really quit?" 10 30
- case $? in
- 0)
- break
- ;;
- 1)
- returncode=99
- ;;
- esac
- ;;
- 0)
- "$DIALOG" \
- --clear \
- --backtitle "$backtitle" --no-collapse --cr-wrap \
- --msgbox "Resulting data:\n\
-$show" 10 40
- ;;
- 2)
- "$DIALOG" \
- --clear \
- --backtitle "$backtitle" --no-collapse --cr-wrap \
- --msgbox "Help data:\n\
-$show" 10 40
- ;;
- *)
- echo "Return code was $returncode"
- exit
- ;;
- esac
-done