[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug #27196] Using -o and -i options together is broken
From: |
Jim Meyering |
Subject: |
Re: [bug #27196] Using -o and -i options together is broken |
Date: |
Fri, 04 Dec 2009 13:26:18 +0100 |
Paolo Bonzini wrote:
> Follow-up Comment #2, bug #27196 (project grep):
>
> $ echo abcDEF | ./grep -o -i C.E
> cDE
> $ echo abcDEF | LANG=en_US.ASCII ./grep -o -i C.E
> $
>
> Happens irregardless of --with/--without-included-regex
Hi Paolo,
Thanks for all the triage!
Note that the first didn't print anything for me,
since I have LC_ALL=C in my environment:
$ echo abcDEF | LC_ALL=en_GB.UTF-8 ./grep -o -i C.E
cDE
$ echo abcDEF | LC_ALL=C ./grep -o -i C.E