blob: 2c076e955563902a3027df2b9a237eb9056de21c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# $Id: textbox3,v 1.6 2010/01/13 10:37:01 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" \
--extra-button "$@" \
--textbox "$tempfile" 22 77
retval=$?
. ./report-button
|