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

21 lines
357 B
Bash
Executable file

#!/bin/sh
# $Id: textbox-help,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 "$@" \
--textbox "$tempfile" 22 77
returncode=$?
. ./report-button