Home
last modified time | relevance | path

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

/external/zstd/programs/
Dzstdgrep.12 .TH "ZSTDGREP" "1" "January 2022" "zstd 1.5.2" "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 (1)\fR on files, or \fBstdin\fR if no files argument is given, after de…
14 …rep (1)\fR\. If an \fB\-e\fR flag is found in the \fBgrep\-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…
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 …
14 …assed 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.
DMakefile291 zstdgrep.1: zstdgrep.1.md ../lib/zstd.h
298 man: zstd.1 zstdgrep.1 zstdless.1
303 $(RM) zstdgrep.1
309 man ./zstdgrep.1
411 $(INSTALL_SCRIPT) zstdgrep $(DESTDIR)$(BINDIR)/zstdgrep
416 $(INSTALL_MAN) zstdgrep.1 $(DESTDIR)$(MAN1DIR)/zstdgrep.1
422 $(RM) $(DESTDIR)$(BINDIR)/zstdgrep
429 $(RM) $(DESTDIR)$(MAN1DIR)/zstdgrep.1
DREADME.md290 ### zstdgrep subsection in Command Line Interface for Zstandard library
292 `zstdgrep` is a utility which makes it possible to `grep` directly a `.zst` compressed file.
294 `zstdgrep pattern file.zst`
296 `zstdgrep` is _not_ compatible with dictionary compression.
Dzstdgrep40 *) prog=zstdgrep;;
/external/zstd/build/cmake/programs/
DCMakeLists.txt49 install(PROGRAMS ${PROGRAMS_DIR}/zstdgrep DESTINATION "${CMAKE_INSTALL_BINDIR}")
55 add_custom_target(zstdgrep.1 ALL
56 ${CMAKE_COMMAND} -E copy ${PROGRAMS_DIR}/zstdgrep.1 .
57 COMMENT "Copying manpage zstdgrep.1")
74 ${CMAKE_CURRENT_BINARY_DIR}/zstdgrep.1
/external/zstd/contrib/snap/
Dsnapcraft.yaml17 zstdgrep:
18 command: usr/local/bin/zstdgrep
/external/zstd/build/meson/programs/
Dmeson.build82 install_data(join_paths(zstd_rootdir, 'programs/zstdgrep'),
91 join_paths(zstd_rootdir, 'programs/zstdgrep.1'),
/external/zstd/
DCHANGELOG244 cli: zstdgrep: handle -f flag by @felixhandte (#1618)
250 build: CMake: install zstdless and zstdgrep by @leeyoung624 (#1647)
317 misc: fixed zstdgrep, returns 1 on failure, by @lzutao
325 misc: added man pages for zstdless and zstdgrep, by @samrussell
503 cli : new : added zstdless and zstdgrep tools
/external/zstd/tests/
DplayTests.sh91 ZSTDGREP="$PRGDIR/zstdgrep"
314 println "\n===> zstdgrep tests"
319 lines=$(ZCAT=./zstdcat "$ZSTDGREP" 2>&1 "1234" tmp_grep tmp_grep.zst | wc -l)
321 ZCAT=./zstdcat "$ZSTDGREP" 2>&1 "1234" tmp_grep_bad.zst && die "Should have failed"
322 ZCAT=./zstdcat "$ZSTDGREP" 2>&1 "1234" tmp_grep_bad.zst | grep "No such file or directory" || true
DMakefile311 .PHONY: test-zstd test-zstd32 test-zstd-nolegacy test-zstdgrep