/contrib/dialog/samples/textbox-help
Shell | 20 lines | 11 code | 7 blank | 2 comment | 1 complexity | 14d0a1e39961c27aaacf36caadf03334 MD5 | raw file
1#!/bin/sh 2# $Id: textbox-help,v 1.1 2011/01/18 09:59:20 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 --help-button "$@" \ 16 --textbox "$tempfile" 22 77 17 18retval=$? 19 20. ./report-button