aboutsummaryrefslogtreecommitdiff
path: root/contrib/dialog/samples/programbox3
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2026-07-07 06:47:36 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2026-07-07 06:47:36 +0000
commitaf202a5052b6e9a1885d06941ffbba7630acb7df (patch)
treecdcc18636b8c782bdf79274531f213812d144b43 /contrib/dialog/samples/programbox3
parentf7675fab2084ef5a2c0feb378ff396f0d5ed6c92 (diff)
Retire dialog
This is the last remaining piece of GPL software in the base system. The installer transitioned to bsddialog four years ago, and the last remaining dialog consumer, dpv, was turned off more than two years ago. Retire dpv, libdpv, libfigpar (used only by dpv), and dialog itself. Reviewed by: dteske Differential Revision: https://reviews.freebsd.org/D55424
Diffstat (limited to 'contrib/dialog/samples/programbox3')
-rwxr-xr-xcontrib/dialog/samples/programbox322
1 files changed, 0 insertions, 22 deletions
diff --git a/contrib/dialog/samples/programbox3 b/contrib/dialog/samples/programbox3
deleted file mode 100755
index 1dc020c3d222..000000000000
--- a/contrib/dialog/samples/programbox3
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# $Id: programbox3,v 1.2 2020/11/26 00:05:11 tom Exp $
-
-. ./setup-vars
-
-. ./setup-tempfile
-
-ls -1 >$tempfile
-(
-while true
-do
-read text
-test -z "$text" && break
-ls -ld "$text" || break
-sleep 0.1
-done <$tempfile
-) |
-
-$DIALOG --title "PROGRAMBOX" "$@" --programbox -1 -1
-
-returncode=$?
-. ./report-button