summaryrefslogtreecommitdiff
path: root/text-utils
diff options
context:
space:
mode:
Diffstat (limited to 'text-utils')
-rw-r--r--text-utils/Makefile.am2
-rw-r--r--text-utils/README.reset20
-rwxr-xr-xtext-utils/reset11
3 files changed, 1 insertions, 32 deletions
diff --git a/text-utils/Makefile.am b/text-utils/Makefile.am
index 3c8b33bc..f3c3dca8 100644
--- a/text-utils/Makefile.am
+++ b/text-utils/Makefile.am
@@ -1,6 +1,6 @@
include $(top_srcdir)/config/include-Makefile.am
-EXTRA_DIST = README.clear README.col README.pg README.reset LICENSE.pg
+EXTRA_DIST = README.* LICENSE.*
usrbinexec_PROGRAMS = col colcrt colrm column hexdump rev line tailf
diff --git a/text-utils/README.reset b/text-utils/README.reset
deleted file mode 100644
index 8060d265..00000000
--- a/text-utils/README.reset
+++ /dev/null
@@ -1,20 +0,0 @@
-RedHat and SuSE take the program reset from ncurses,
- where reset is a name for the program tset.
- It is approximately equivalent to
- stty sane; tputs rs1; tputs rs2; tputs rf
- with `tputs rf' replaced by `tputs if' when there is an
- init_file but no reset_file. In the comments it wonders
- whether also sending rs3, rmacs, rmul, rmm might be a good idea.
-
-Slackware uses the small script given here.
- The part `echo -e \\033c' is the canonical reset of the kernel
- console status, and is equivalent to `tputs rs1' for a linux
- terminal.
-
-So, both versions are approximately the same.
-
-
-[A disadvantage of `echo -e \\033c' might be that it is potentially
-wrong on a non-vt100, non-xterm, non-linux terminal.
-An advantage is that there are terminfo entries for xterm around
-that only use rs1=^O as reset, and then \Ec is much better.]
diff --git a/text-utils/reset b/text-utils/reset
deleted file mode 100755
index fb9834db..00000000
--- a/text-utils/reset
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-stty sane
-tput clear
-tput rmacs
-tput rmm
-tput rmso
-tput rmul
-tput rs1
-tput rs2
-tput rs3
-echo -e \\033c