blob: c8e3018d5dcbef09c964d3604161e38ba6a436e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
# $Id: fselect1-stdout,v 1.1 2003/08/15 19:40:37 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
FILE=`$DIALOG --stdout --title "Please choose a file" --fselect $FILE 14 48`
case $? in
0)
echo "\"$FILE\" chosen";;
1)
echo "Cancel pressed.";;
255)
echo "Box closed.";;
esac
|