[Bug 186861] bsdgrep(1): xzgrep(1) sometimes doesn't find matches it should find

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Sep 26 16:31:08 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186861

--- Comment #1 from shoesoft at gmx.net ---
I can reproduce that bug on 10-STABLE.

xzgrep only works on the first 32K (uncompressed) of the input file.

$ seq 10000 | xz > seq.xz
$ xzgrep -c . seq.xz
6775

Using regular grep works as expected:
$ xzcat seq.xz | grep -c .
10000

zgrep/bz2grep also work.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list