mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 19:03:48 +01:00
22 lines
379 B
Plaintext
22 lines
379 B
Plaintext
|
#!/bin/sh
|
||
|
# $Id: textbox-both,v 1.1 2011/01/18 09:59:47 tom Exp $
|
||
|
|
||
|
. ./setup-vars
|
||
|
|
||
|
. ./setup-tempfile
|
||
|
|
||
|
TEXT=/usr/share/common-licenses/GPL
|
||
|
test -f $TEXT || TEXT=../COPYING
|
||
|
|
||
|
cat textbox.txt | expand > $tempfile
|
||
|
cat $TEXT | expand >> $tempfile
|
||
|
|
||
|
$DIALOG --clear --title "TEXT BOX" \
|
||
|
--help-button \
|
||
|
--extra-button "$@" \
|
||
|
--textbox "$tempfile" 22 77
|
||
|
|
||
|
retval=$?
|
||
|
|
||
|
. ./report-button
|