Home
last modified time | relevance | path

Searched full:zstdgrep (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/zstd/programs/
H A Dzstdgrep.12 .TH "ZSTDGREP" "1" "March 2024" "zstd 1.5.6" "User Commands"
5 \fBzstdgrep\fR \- print lines matching a pattern in zstandard\-compressed files
8 \fBzstdgrep\fR [\fIgrep\-flags\fR] [\-\-] \fIpattern\fR [\fIfiles\fR \.\.\.]
11 \fBzstdgrep\fR runs \fBgrep\fR(1) on files, or \fBstdin\fR if no files argument is given, after dec…
14 …grep\fR(1)\. If an \fB\-e\fR flag is found in the \fIgrep\-flags\fR, \fBzstdgrep\fR will not look …
17 …pressed files out of the box, and can prove better alternatives than \fBzstdgrep\fR notably for un…
H A DMakefile301 zstdgrep.1: zstdgrep.1.md ../lib/zstd.h
308 man: zstd.1 zstdgrep.1 zstdless.1
313 $(RM) zstdgrep.1
319 man ./zstdgrep.1
421 $(INSTALL_SCRIPT) zstdgrep $(DESTDIR)$(BINDIR)/zstdgrep
426 $(INSTALL_MAN) zstdgrep.1 $(DESTDIR)$(MAN1DIR)/zstdgrep.1
432 $(RM) $(DESTDIR)$(BINDIR)/zstdgrep
439 $(RM) $(DESTDIR)$(MAN1DIR)/zstdgrep.1
H A Dzstdgrep.1.md1 zstdgrep(1) -- print lines matching a pattern in zstandard-compressed files
7 `zstdgrep` [<grep-flags>] [--] <pattern> [<files> ...]
12 `zstdgrep` runs `grep`(1) on files, or `stdin` if no files argument is given, after decompressing t…
14 …passed on to `grep`(1). If an `-e` flag is found in the <grep-flags>, `zstdgrep` will not look fo…
17 and can prove better alternatives than `zstdgrep` notably for unsupported complex pattern searches.
H A DREADME.md291 ### zstdgrep subsection in Command Line Interface for Zstandard library
293 `zstdgrep` is a utility which makes it possible to `grep` directly a `.zst` compressed file.
295 `zstdgrep pattern file.zst`
297 `zstdgrep` is _not_ compatible with dictionary compression.
H A Dzstdgrep40 *) prog=zstdgrep;;
H A Dzstd.1557 \fBzstdgrep\fR(1), \fBzstdless\fR(1), \fBgzip\fR(1), \fBxz\fR(1)
H A Dzstd.1.md685 `zstdgrep`(1), `zstdless`(1), `gzip`(1), `xz`(1)
/aosp_15_r20/external/zstd/build/cmake/programs/
H A DCMakeLists.txt54 install(PROGRAMS ${PROGRAMS_DIR}/zstdgrep DESTINATION "${CMAKE_INSTALL_BINDIR}")
60 add_custom_target(zstdgrep.1 ALL
61 ${CMAKE_COMMAND} -E copy ${PROGRAMS_DIR}/zstdgrep.1 .
62 COMMENT "Copying manpage zstdgrep.1")
79 ${CMAKE_CURRENT_BINARY_DIR}/zstdgrep.1
/aosp_15_r20/external/zstd/tests/cli-tests/cltools/
H A Dzstdgrep.sh6 zstdgrep "1234" file file.zst
8 zstdgrep "1234" bad.zst
/aosp_15_r20/external/zstd/contrib/snap/
H A Dsnapcraft.yaml17 zstdgrep:
18 command: usr/local/bin/zstdgrep
/aosp_15_r20/external/zstd/tests/cli-tests/
H A Drun.py626 ZSTDGREP_PATH = os.path.join(PROGRAMS_DIR, "zstdgrep")
655 "--zstdgrep",
657 help="Sets the ZSTDGREP_BIN environment variable. Path of the zstdgrep CLI."
706 env["ZSTDGREP_BIN"] = os.path.abspath(args.zstdgrep)
H A DREADME.md15 Similarly, the `--datagen`, and `--zstdgrep` flags can be set to specify
69 Similarly, `datagen`, `unzstd`, `zstdgrep`, `zstdcat`, etc, are provided.
/aosp_15_r20/external/zstd/build/meson/programs/
H A Dmeson.build99 install_data(join_paths(zstd_rootdir, 'programs/zstdgrep'),
108 join_paths(zstd_rootdir, 'programs/zstdgrep.1'),
/aosp_15_r20/external/zstd/
H A DCHANGELOG360 cli: zstdgrep: handle -f flag by @felixhandte (#1618)
366 build: CMake: install zstdless and zstdgrep by @leeyoung624 (#1647)
433 misc: fixed zstdgrep, returns 1 on failure, by @lzutao
441 misc: added man pages for zstdless and zstdgrep, by @samrussell
619 cli : new : added zstdless and zstdgrep tools