-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds documentation to help and man pages for legacy pass-through behavior when force is set and destination is stdout. Documents --pass-through in man pages
- Loading branch information
Showing
6 changed files
with
36 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
.TH "ZSTDGREP" "1" "April 2022" "zstd 1.5.2" "User Commands" | ||
. | ||
.TH "ZSTDGREP" "1" "August 2022" "zstd 1.5.3" "User Commands" | ||
. | ||
.SH "NAME" | ||
\fBzstdgrep\fR \- print lines matching a pattern in zstandard\-compressed files | ||
. | ||
.SH "SYNOPSIS" | ||
\fBzstdgrep\fR [\fIgrep\-flags\fR] [\-\-] \fIpattern\fR [\fIfiles\fR \|\.\|\.\|\.] | ||
\fBzstdgrep\fR [\fIgrep\-flags\fR] [\-\-] \fIpattern\fR [\fIfiles\fR \.\.\.] | ||
. | ||
.SH "DESCRIPTION" | ||
\fBzstdgrep\fR runs \fBgrep (1)\fR on files, or \fBstdin\fR if no files argument is given, after decompressing them with \fBzstdcat (1)\fR\. | ||
. | ||
.P | ||
The grep\-flags and pattern arguments are passed on to \fBgrep (1)\fR\. If an \fB\-e\fR flag is found in the \fBgrep\-flags\fR, \fBzstdgrep\fR will not look for a pattern argument\. | ||
. | ||
.P | ||
Note that modern \fBgrep\fR alternatives such as \fBripgrep\fR (\fBrg\fR) support \fBzstd\fR\-compressed files out of the box, and can prove better alternatives than \fBzstdgrep\fR notably for unsupported complex pattern searches\. Note though that such alternatives may also feature some minor command line differences\. | ||
. | ||
.SH "EXIT STATUS" | ||
In case of missing arguments or missing pattern, 1 will be returned, otherwise 0\. | ||
. | ||
.SH "SEE ALSO" | ||
\fBzstd (1)\fR | ||
. | ||
.SH "AUTHORS" | ||
Thomas Klausner \fIwiz@NetBSD\.org\fR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
.TH "ZSTDLESS" "1" "April 2022" "zstd 1.5.2" "User Commands" | ||
. | ||
.TH "ZSTDLESS" "1" "August 2022" "zstd 1.5.3" "User Commands" | ||
. | ||
.SH "NAME" | ||
\fBzstdless\fR \- view zstandard\-compressed files | ||
. | ||
.SH "SYNOPSIS" | ||
\fBzstdless\fR [\fIflags\fR] [\fIfile\fR \|\.\|\.\|\.] | ||
\fBzstdless\fR [\fIflags\fR] [\fIfile\fR \.\.\.] | ||
. | ||
.SH "DESCRIPTION" | ||
\fBzstdless\fR runs \fBless (1)\fR on files or stdin, if no files argument is given, after decompressing them with \fBzstdcat (1)\fR\. | ||
. | ||
.SH "SEE ALSO" | ||
\fBzstd (1)\fR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters