#!/bin/sh

FILE=`Xdialog --title "Please choose a file" --fselect /home 28 48 2>&1`

if [ "$?" = 1 ] ; then
	echo "Cancel pressed !"
else
	echo "\"$FILE\" chosen"
fi
