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