]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/dialog/samples/fselect1
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / dialog / samples / fselect1
1 #!/bin/sh
2 # $Id: fselect1,v 1.9 2010/01/13 10:20:03 tom Exp $
3
4 . ./setup-vars
5
6 FILE=$HOME
7 for n in .cshrc .profile .bashrc
8 do
9         if test -f $HOME/$n ; then
10                 FILE=$HOME/$n
11                 break
12         fi
13 done
14
15 exec 3>&1
16 RESULT=`$DIALOG --title "Please choose a file" "$@" --fselect $FILE 14 48 2>&1 1>&3`
17 retval=$?
18 exec 3>&-
19
20 . ./report-string