Gavin Smith wrote:
https://www.gnu.org/software/grep/manual/grep.html
This documentation is not usable because the text is far too big. I assume
it is being enlarged with a CSS file.
Additionally, it inserts a pilcrow after each option, which may be confusing
if one copies the text in an ema
On Thu, Aug 19, 2021 at 2:12 AM Gavin Smith wrote:
>
> https://www.gnu.org/software/grep/manual/grep.html
>
> This documentation is not usable because the text is far too big. I assume
> it is being enlarged with a CSS file.
>
>
>
In the manual.css file [0], commenting out the font-size property
This reproduces on grep 3.1 on Ubuntu.
The command:
grep -f -
should accept a list of patterns from standard input, like this:
$ grep -f -
pat1
pat2
pat3
[Ctrl-D]
Upon receiving the EOF indication (zero byte read), the program
should immediately conclude that the list of pat
My fading recollection from long, long ago is that this is a difficult to
avoid artifact of using stdio.
If no patterns are fed into grep, just a single EOF, then grep exits
immediately.
But some non-empty input (just a single "pat1" is sufficient) is fed to grep,
then it takes two EOF's to get