diff options
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20080819/samples/fselect1')
-rwxr-xr-x | Build/source/utils/dialog/dialog-1.1-20080819/samples/fselect1 | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20080819/samples/fselect1 b/Build/source/utils/dialog/dialog-1.1-20080819/samples/fselect1 new file mode 100755 index 00000000000..50ced70ba0d --- /dev/null +++ b/Build/source/utils/dialog/dialog-1.1-20080819/samples/fselect1 @@ -0,0 +1,26 @@ +#!/bin/sh +# $Id: fselect1,v 1.4 2003/10/09 22:45:06 tom Exp $ +: ${DIALOG=dialog} + +FILE=$HOME +for n in .cshrc .profile .bashrc +do + if test -f $HOME/$n ; then + FILE=$HOME/$n + break + fi +done + +exec 3>&1 +FILE=`$DIALOG --title "Please choose a file" --fselect $FILE 14 48 2>&1 1>&3` +code=$? +exec 3>&- + +case $code in + 0) + echo "\"$FILE\" chosen";; + 1) + echo "Cancel pressed.";; + 255) + echo "Box closed.";; +esac |