Page MenuHomeFreeBSD

grep: fix combination of quite and count flag
ClosedPublic

Authored by oshogbo on Jul 8 2021, 11:45 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Nov 2, 3:59 AM
Unknown Object (File)
Tue, Oct 21, 8:05 AM
Unknown Object (File)
Oct 16 2025, 1:51 AM
Unknown Object (File)
Oct 16 2025, 12:26 AM
Unknown Object (File)
Oct 4 2025, 8:59 AM
Unknown Object (File)
Sep 30 2025, 9:48 PM
Unknown Object (File)
Sep 29 2025, 9:46 PM
Unknown Object (File)
Sep 25 2025, 9:36 AM
Subscribers
None

Details

Summary

When the quite (-q) flag is provided, we don't expect any output.
Currently, the behavior is broken:
$ grep -cq flag util.c
1

$ grep -cs flag util.c
55

First of all, we print a number to stdout. Secondly, it just returns 0 or 1
(which is unexpected). GNU grep with c and q flags doesn't print anything.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable