xref: /freebsd/contrib/dialog/samples/textbox3 (revision c6ec7d31830ab1c80edae95ad5e4b9dba10c47ac)
1#!/bin/sh
2# $Id: textbox3,v 1.6 2010/01/13 10:37:01 tom Exp $
3
4. ./setup-vars
5
6. ./setup-tempfile
7
8TEXT=/usr/share/common-licenses/GPL
9test -f $TEXT || TEXT=../COPYING
10
11cat textbox.txt | expand > $tempfile
12cat $TEXT | expand >> $tempfile
13
14$DIALOG --clear --title "TEXT BOX" \
15	--extra-button "$@" \
16	--textbox "$tempfile" 22 77
17
18retval=$?
19
20. ./report-button
21