]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/dialog/samples/fselect1-stdout
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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