]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/textbox3
contrib/tzdata: import tzdata 2023c
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / textbox3
1 #!/bin/sh
2 # $Id: textbox3,v 1.8 2020/11/26 00:05:52 tom Exp $
3
4 . ./setup-vars
5
6 . ./setup-tempfile
7
8 TEXT=/usr/share/common-licenses/GPL
9 test -f $TEXT || TEXT=../COPYING
10
11 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
13
14 $DIALOG --clear --title "TEXT BOX" \
15         --extra-button "$@" \
16         --textbox "$tempfile" 22 77
17
18 returncode=$?
19
20 . ./report-button