10 lines
209 B
Bash
Executable File
10 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: fselect-stdout,v 1.9 2020/11/26 00:09:12 tom Exp $
|
|
|
|
. ./setup-vars
|
|
|
|
returntext=`$DIALOG --stdout --title "Please choose a file" "$@" --fselect "$HOME/" 14 48`
|
|
returncode=$?
|
|
|
|
. ./report-string
|