1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
Description: Remove references to zcat in the manpage.
We don't install a zcat tool, so it doesn't make sense to reference it.
Author: Kenneth J. Pronovici <pronovic@debian.org>
Index: ncompress/compress.1
===================================================================
--- ncompress.orig/compress.1
+++ ncompress/compress.1
@@ -1,6 +1,6 @@
.TH COMPRESS 1 local
.SH NAME
-compress, uncompress, zcat \- compress and expand data
+compress, uncompress \- compress and expand data
.SH SYNOPSIS
.ll +8
.B compress
@@ -42,15 +42,6 @@ compress, uncompress, zcat \- compress a
] [
.I "name \&..."
]
-.br
-.B zcat
-[
-.B \-V
-] [
-.B \-\-
-] [
-.I "name \&..."
-]
.SH DESCRIPTION
.I Compress
reduces the size of the named files using adaptive Lempel\-Ziv coding.
@@ -77,9 +68,7 @@ is run in the foreground,
the user is prompted as to whether an existing file should be overwritten.
.PP
Compressed files can be restored to their original form using
-.I uncompress
-or
-.I zcat.
+.I uncompress.
.PP
.I uncompress
takes a list of files on its command line and replaces each
@@ -103,19 +92,6 @@ option makes
.I compress/uncompress
write to the standard output; no files are changed.
.PP
-.I zcat
-is identical to
-.I uncompress
-.B \-c.
-.I zcat
-uncompresses either a list of files on the command line or its
-standard input and writes the uncompressed data on standard output.
-.I zcat
-will uncompress files that have the correct magic number whether
-they have a
-.B "\&.Z"
-suffix or not.
-.PP
If the
.B \-r
flag is specified,
|