GNU bug report logs - #17032
side effect bug...

Previous Next

Package: grep;

Reported by: Roméo Capulet <p-pioneer-q <at> gmx.fr>

Date: Tue, 18 Mar 2014 05:00:03 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: Roméo Capulet <p-pioneer-q <at> gmx.fr>
Subject: bug#17032: closed (Re: bug#17032: side effect bug...)
Date: Tue, 18 Mar 2014 16:01:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#17032: side effect bug...

which was filed against the grep package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 17032 <at> debbugs.gnu.org.

-- 
17032: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17032
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Jim Meyering <jim <at> meyering.net>
To: Roméo Capulet <p-pioneer-q <at> gmx.fr>
Cc: 17032-done <at> debbugs.gnu.org
Subject: Re: bug#17032: side effect bug...
Date: Tue, 18 Mar 2014 08:59:39 -0700
tags 17032 + notabug
thanks

On Mon, Mar 17, 2014 at 9:41 PM, Roméo Capulet <p-pioneer-q <at> gmx.fr> wrote:
> The option "-n" have a side effect with the option "-P" and the regexp
> '^\r$', the line numbers got overwritten by the carriage return char so
> these don't appear on output.
>
> cmd ex: grep -Pn '^\r$' file.txt
>
> ps: I know I can see the numbers by redirecting output in a file.

Thanks for the report.
You can avoid that in at least two ways: either filter out all \r bytes
or filter through something like cat -A that renders them another way:

  grep -Pn '^\r$' file.txt | tr -d '\r'

or

  grep -Pn '^\r$' file.txt | cat -A

[Message part 3 (message/rfc822, inline)]
From: Roméo Capulet <p-pioneer-q <at> gmx.fr>
To: bug-grep <at> gnu.org
Subject: side effect bug...
Date: Tue, 18 Mar 2014 05:41:15 +0100
The option "-n" have a side effect with the option "-P" and the regexp 
'^\r$', the line numbers got overwritten by the carriage return char so 
these don't appear on output.

cmd ex: grep -Pn '^\r$' file.txt

ps: I know I can see the numbers by redirecting output in a file.



This bug report was last modified 11 years and 71 days ago.

Previous Next


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