]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/dialog/samples/fselect1-stdout
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / dialog / samples / fselect1-stdout
1 #!/bin/sh
2 # $Id: fselect1-stdout,v 1.6 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 RESULT=`$DIALOG --stdout --title "Please choose a file" "$@" --fselect $FILE 14 48`
16 retval=$?
17
18 . ./report-string