#!/bin/sh # $Id: textbox-both 1073 2021-06-27 05:01:23Z $ . ./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