File: fselect

package info (click to toggle)
dialog 1.0-20050306-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,800 kB
  • ctags: 1,115
  • sloc: ansic: 9,637; sh: 7,049; perl: 355; makefile: 235; python: 164
file content (17 lines) | stat: -rwxr-xr-x 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# $Id: fselect,v 1.5 2003/10/09 22:45:06 tom Exp $
: ${DIALOG=dialog}

exec 3>&1
FILE=`$DIALOG --title "Please choose a file" --fselect $HOME/ 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