Merging upstream version 1.15.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ba8e0a83c7
commit
60d97c7cb2
24 changed files with 310 additions and 146 deletions
|
@ -6,8 +6,8 @@
|
|||
@finalout
|
||||
@c %**end of header
|
||||
|
||||
@set UPDATED 5 January 2025
|
||||
@set VERSION 1.14
|
||||
@set UPDATED 27 May 2025
|
||||
@set VERSION 1.15
|
||||
|
||||
@dircategory Compression
|
||||
@direntry
|
||||
|
@ -350,6 +350,16 @@ for "meta").
|
|||
Verbose mode. Show error messages. Repeating it increases the verbosity
|
||||
level. @xref{version}.
|
||||
|
||||
@item -x @var{pattern}
|
||||
@itemx --exclude=@var{pattern}
|
||||
Exclude files matching a shell pattern like @file{*.o}, even if the files
|
||||
are specified in the command line. A file is considered to match if any
|
||||
component of the file name matches. For example, @file{*.o} matches
|
||||
@file{foo.o}, @file{foo.o/bar} and @file{foo/bar.o}. If @var{pattern}
|
||||
contains a @samp{/}, it matches a corresponding @samp{/} in the file name.
|
||||
For example, @file{foo/*.o} matches @file{foo/bar.o}. Multiple
|
||||
@option{--exclude} options can be specified.
|
||||
|
||||
@end table
|
||||
|
||||
|
||||
|
@ -611,7 +621,8 @@ matches were found, and 2 means trouble.
|
|||
|
||||
@noindent
|
||||
@command{zgrep} supports the following options (Some options only work if
|
||||
the grep program used supports them. Options -h, -H, -r, -R, and -Z are
|
||||
the grep program used supports them. Options @option{--exclude},
|
||||
@option{-h}, @option{-H}, @option{-r}, @option{-R}, and @option{-Z} are
|
||||
managed by @command{zgrep} and not passed to grep):
|
||||
|
||||
@table @code
|
||||
|
@ -651,6 +662,15 @@ Use @var{pattern} as the pattern to match.
|
|||
@itemx --extended-regexp
|
||||
Interpret @var{pattern} as an extended regular expression (ERE).
|
||||
|
||||
@item --exclude=@var{pattern}
|
||||
Exclude files matching a shell pattern like @file{*.o}, even if the files
|
||||
are specified in the command line. A file is considered to match if any
|
||||
component of the file name matches. For example, @file{*.o} matches
|
||||
@file{foo.o}, @file{foo.o/bar} and @file{foo/bar.o}. If @var{pattern}
|
||||
contains a @samp{/}, it matches a corresponding @samp{/} in the file name.
|
||||
For example, @file{foo/*.o} matches @file{foo/bar.o}. Multiple
|
||||
@option{--exclude} options can be specified.
|
||||
|
||||
@item -f @var{file}
|
||||
@itemx --file=@var{file}
|
||||
Obtain patterns from @var{file}, one per line.@*
|
||||
|
@ -812,7 +832,7 @@ files are ignored.
|
|||
|
||||
Note that error detection in the xz format is broken. First, some xz files
|
||||
lack integrity information. Second, not all xz decompressors can
|
||||
@uref{http://www.nongnu.org/lzip/xz_inadequate.html#fragmented,,check the integrity}
|
||||
@uref{http://www.nongnu.org/lzip/xz_inadequate.html#checking,,check the integrity}
|
||||
of all xz files. Third, section 2.1.1.2 'Stream Flags' of the
|
||||
@uref{http://tukaani.org/xz/xz-file-format.txt,,xz format specification}
|
||||
allows xz decompressors to produce garbage output without issuing any
|
||||
|
@ -864,6 +884,16 @@ recursively, following all symbolic links.
|
|||
Verbose mode. Show the check status for each file processed. Further -v's
|
||||
increase the verbosity level. @xref{version}.
|
||||
|
||||
@item -x @var{pattern}
|
||||
@itemx --exclude=@var{pattern}
|
||||
Exclude files matching a shell pattern like @file{*.o}, even if the files
|
||||
are specified in the command line. A file is considered to match if any
|
||||
component of the file name matches. For example, @file{*.o} matches
|
||||
@file{foo.o}, @file{foo.o/bar} and @file{foo/bar.o}. If @var{pattern}
|
||||
contains a @samp{/}, it matches a corresponding @samp{/} in the file name.
|
||||
For example, @file{foo/*.o} matches @file{foo/bar.o}. Multiple
|
||||
@option{--exclude} options can be specified.
|
||||
|
||||
@end table
|
||||
|
||||
|
||||
|
@ -1007,6 +1037,16 @@ recursively, following all symbolic links.
|
|||
Verbose mode. Show the files being processed. A second @option{-v} also shows
|
||||
the files being ignored and increases the verbosity level. @xref{version}.
|
||||
|
||||
@item -x @var{pattern}
|
||||
@itemx --exclude=@var{pattern}
|
||||
Exclude files matching a shell pattern like @file{*.o}, even if the files
|
||||
are specified in the command line. A file is considered to match if any
|
||||
component of the file name matches. For example, @file{*.o} matches
|
||||
@file{foo.o}, @file{foo.o/bar} and @file{foo/bar.o}. If @var{pattern}
|
||||
contains a @samp{/}, it matches a corresponding @samp{/} in the file name.
|
||||
For example, @file{foo/*.o} matches @file{foo/bar.o}. Multiple
|
||||
@option{--exclude} options can be specified.
|
||||
|
||||
@item -0 .. -9
|
||||
Set the compression level of lzip. By default @command{zupdate} passes
|
||||
@option{-9} to lzip. Custom compression options can be passed to lzip with
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue