2022-04-09 14:42:32 +02:00
|
|
|
Index: gzip-1.12/zgrep.1
|
2013-01-31 17:49:11 +01:00
|
|
|
===================================================================
|
2022-04-09 14:42:32 +02:00
|
|
|
--- gzip-1.12.orig/zgrep.1
|
|
|
|
+++ gzip-1.12/zgrep.1
|
|
|
|
@@ -11,7 +11,7 @@ The
|
2021-09-10 16:22:11 +02:00
|
|
|
.B zgrep
|
|
|
|
command invokes
|
|
|
|
.B grep
|
2013-01-31 17:49:11 +01:00
|
|
|
-on compressed or gzipped files.
|
2022-04-27 11:39:29 +02:00
|
|
|
+on compressed, xz'ed, lzma'ed, zstd'ed, bzip2'ed or gzipped files.
|
2013-01-31 17:49:11 +01:00
|
|
|
All options specified are passed directly to
|
2021-09-10 16:22:11 +02:00
|
|
|
.BR grep .
|
2013-01-31 17:49:11 +01:00
|
|
|
If no file is specified, then the standard input is decompressed
|
2022-04-09 14:42:32 +02:00
|
|
|
Index: gzip-1.12/zgrep.in
|
2013-01-31 17:49:11 +01:00
|
|
|
===================================================================
|
2022-04-09 14:42:32 +02:00
|
|
|
--- gzip-1.12.orig/zgrep.in
|
|
|
|
+++ gzip-1.12/zgrep.in
|
2022-04-27 11:39:29 +02:00
|
|
|
@@ -215,6 +215,15 @@ do
|
2013-01-31 17:49:11 +01:00
|
|
|
*.bz2)
|
|
|
|
uncompress=bzip2
|
|
|
|
;;
|
|
|
|
+ *.xz)
|
|
|
|
+ uncompress=xz
|
|
|
|
+ ;;
|
|
|
|
+ *.lzma)
|
|
|
|
+ uncompress=lzma
|
2022-04-27 11:39:29 +02:00
|
|
|
+ ;;
|
|
|
|
+ *.zst)
|
|
|
|
+ uncompress=zstd
|
2013-01-31 17:49:11 +01:00
|
|
|
+ ;;
|
|
|
|
*)
|
|
|
|
uncompress=gzip
|
|
|
|
;;
|