aboutsummaryrefslogtreecommitdiff
path: root/contrib/dialog/samples/textbox-help
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/dialog/samples/textbox-help')
-rwxr-xr-xcontrib/dialog/samples/textbox-help20
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/dialog/samples/textbox-help b/contrib/dialog/samples/textbox-help
deleted file mode 100755
index 450c728c2c51..000000000000
--- a/contrib/dialog/samples/textbox-help
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# $Id: textbox-help,v 1.3 2020/11/26 00:05:11 tom Exp $
-
-. ./setup-vars
-
-. ./setup-tempfile
-
-TEXT=/usr/share/common-licenses/GPL
-test -f $TEXT || TEXT=../COPYING
-
-expand < textbox.txt > $tempfile
-expand < $TEXT >> $tempfile
-
-$DIALOG --clear --title "TEXT BOX" \
- --help-button "$@" \
- --textbox "$tempfile" 22 77
-
-returncode=$?
-
-. ./report-button