mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
9 lines
209 B
Bash
Executable file
9 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
|