freebsd-src/contrib/dialog/samples/textbox-both
2021-02-26 10:16:49 +01:00

22 lines
375 B
Bash
Executable file

#!/bin/sh
# $Id: textbox-both,v 1.3 2020/11/26 00:05:11 tom Exp $
. ./setup-vars
. ./setup-tempfile
TEXT=/usr/share/common-licenses/GPL
test -f $TEXT || TEXT=../COPYING
expand < textbox.txt > $tempfile
expand < $TEXT >> $tempfile
$DIALOG --clear --title "TEXT BOX" \
--help-button \
--extra-button "$@" \
--textbox "$tempfile" 22 77
returncode=$?
. ./report-button