blob: 50ced70ba0d8f14b52db24b3e94a4f498343c7b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|