[grep bug?] -i odd behavior on multibyte locale
From: Alecs King (alecsk_at_gmail.com)
Date: 05/30/05
- Previous message: Julian H. Stacey: "Re: make cores on 5.4-RELEASE amd64 but not on i386, need a maintainer."
- Next in thread: Tim Robbins: "Re: [grep bug?] -i odd behavior on multibyte locale"
- Reply: Tim Robbins: "Re: [grep bug?] -i odd behavior on multibyte locale"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 31 May 2005 03:37:11 +0800 To: freebsd-current@freebsd.org
6.0-current as of May 27.
world cvsup'd & built at May 25.
[alecs@~]$ echo $LC_CTYPE
zh_CN.GBK
[alecs@~]$ echo a | grep -i A
a
[alecs@~]$ echo a | grep -i a
a
[alecs@~]$ echo A | grep -i A # XXX
[alecs@~]$ echo A | grep -i a # XXX
[alecs@~]$ export LC_CTYPE=C
[alecs@~]$ echo a | grep -i A
a
[alecs@~]$ echo a | grep -i a
a
[alecs@~]$ echo A | grep -i A
A
[alecs@~]$ echo A | grep -i a
A
-- Alecs King _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
- Previous message: Julian H. Stacey: "Re: make cores on 5.4-RELEASE amd64 but not on i386, need a maintainer."
- Next in thread: Tim Robbins: "Re: [grep bug?] -i odd behavior on multibyte locale"
- Reply: Tim Robbins: "Re: [grep bug?] -i odd behavior on multibyte locale"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|