GNU bug report logs - #25513
Issue grepping lines ending with CRLF with --color=auto.

Previous Next

Package: grep;

Reported by: Eric Hoffman <ehoffman <at> positronaccess.com>

Date: Mon, 23 Jan 2017 16:37:01 UTC

Severity: normal

Done: Jim Meyering <jim <at> meyering.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Jim Meyering <jim <at> meyering.net>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#25513: closed (Issue grepping lines ending with CRLF with
 --color=auto.)
Date: Mon, 23 Jan 2017 17:14:01 +0000
[Message part 1 (text/plain, inline)]
Your message dated Mon, 23 Jan 2017 09:12:44 -0800
with message-id <CA+8g5KHUjFs0sT9jviPzwz-QiDT6Jtz8kb-2xOkjXyuOPJFEEg <at> mail.gmail.com>
and subject line Re: bug#25513: Issue grepping lines ending with CRLF with --color=auto.
has caused the debbugs.gnu.org bug report #25513,
regarding Issue grepping lines ending with CRLF with --color=auto.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
25513: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25513
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Eric Hoffman <ehoffman <at> positronaccess.com>
To: "'bug-grep <at> gnu.org'" <bug-grep <at> gnu.org>
Subject: Issue grepping lines ending with CRLF with --color=auto.
Date: Mon, 23 Jan 2017 16:03:49 +0000
[Message part 3 (text/plain, inline)]
Hello!

grep is behaving differently when outputting with --color=auto when lines are ending with CRLF (like Windows text files).

The issue is that if I have a file with CRLF line terminator, for example, a file named test.txt, containing:
Line 1<CR><LF>
Line 2<CR><LF>
Line 3<CR><LF>

Or:

$od -c test.txt
0000000   L   i   n   e       1  \r  \n   L   i   n   e       2  \r  \n
0000020   L   i   n   e       3  \r  \n
0000030


Then, If I type:
$ grep --color=auto "." test.txt

That is, I tell grep to display every lines containing at least one character (that is, every lines),  I get on terminal output just 3 empty lines.  However, if I type:
$ grep "." test.txt
Line 1
Line 2
Line 3

Then I do have every lines on the output.

I tried on both SSH and direct console with same result.

On my SSH terminal, I captured output, and what I see is
<CR><LF>
<CR><LF>
<CR><LF>

Here are a few variations:
- I tried with a longer file, like 100 lines, and I do get some of the lines printed, but truncated to the terminal screen width.
- The issue here was with printing every lines, but I do get the same result as long as I match any end of lines, like grep "2.*" test.txt, or even "grep 2[[:cntrl:]]$" test.txt
- The problem is there only when

This was with grep 2.27 (also tried 2.16, which I had before upgrading to 2.27).

Regards,
Eric

[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
From: Jim Meyering <jim <at> meyering.net>
To: Eric Hoffman <ehoffman <at> positronaccess.com>
Cc: 25513-done <at> debbugs.gnu.org
Subject: Re: bug#25513: Issue grepping lines ending with CRLF with
 --color=auto.
Date: Mon, 23 Jan 2017 09:12:44 -0800
tags 25513 notabug
thanks

On Mon, Jan 23, 2017 at 8:03 AM, Eric Hoffman
<ehoffman <at> positronaccess.com> wrote:
> grep is behaving differently when outputting with --color=auto when lines are ending with CRLF (like Windows text files).
>
> The issue is that if I have a file with CRLF line terminator, for example, a file named test.txt, containing:
> Line 1<CR><LF>
> Line 2<CR><LF>
> Line 3<CR><LF>
>
> Or:
>
> $od -c test.txt
> 0000000   L   i   n   e       1  \r  \n   L   i   n   e       2  \r  \n
> 0000020   L   i   n   e       3  \r  \n
> 0000030
>
> Then, If I type:
> $ grep --color=auto "." test.txt
...

Thank you for the report. I too see that behavior, but it is not a
problem with grep. It is due to the way carriage returns are rendered.
Here, even without --color, you can see that the three matched line
render as empty:

$ printf 'line%s\r\n' 1 2 3 | grep .



However, if you pipe that result through cat -A, you see that grep is
working as required:

$ printf 'line%s\r\n' 1 2 3 | grep .|cat -A
line1^M$
line2^M$
line3^M$

So I'm closing this bug.


This bug report was last modified 8 years and 113 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.