[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bash-4.3.33 regexp bug
From: |
Stephane Chazelas |
Subject: |
Re: bash-4.3.33 regexp bug |
Date: |
Fri, 6 Mar 2015 21:35:04 +0000 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
2015-03-06 11:43:24 -0500, Chet Ramey:
> On 3/5/15 12:36 PM, Greg Wooledge wrote:
> > On Thu, Mar 05, 2015 at 05:26:00PM +0000, Stephane Chazelas wrote:
> >> The bash manual only points to regex(3).
> >>
> >> So it's down to your system's regex library (uses
> >> regcomp(REG_EXTENDED)) which on recent GNU systems supports \s.
> >
> > I see. So it's another nonportable feature like printf '%(%s)T'.
>
> It's an imperfect world. I'd rather not replace the system's regexp
> library, just like I'd rather use the system's strftime(3) if it's
> available.
[...]
BTW:
$ ltrace -e regcomp bash -c 'bs="\\"; [[ a =~ ${bs}[\.s ]]'
bash->regcomp(0x7fff4d48bef0, "\\[.s", 1)
I think it should be
bash->regcomp(0x7fff4d48bef0, "\\[\\.s", 1)
--
Stephane
- bash-4.3.33 regexp bug, Jason Vas Dias, 2015/03/05
- Re: bash-4.3.33 regexp bug, Eduardo A . Bustamante López, 2015/03/05
- Re: bash-4.3.33 regexp bug, Stephane Chazelas, 2015/03/05
- Re: bash-4.3.33 regexp bug, Greg Wooledge, 2015/03/05
- Re: bash-4.3.33 regexp bug, Stephane Chazelas, 2015/03/05
- Re: bash-4.3.33 regexp bug, Greg Wooledge, 2015/03/05
- Re: bash-4.3.33 regexp bug, Stephane Chazelas, 2015/03/05
- Re: bash-4.3.33 regexp bug, Chet Ramey, 2015/03/06
- Re: bash-4.3.33 regexp bug,
Stephane Chazelas <=
- Re: bash-4.3.33 regexp bug, Chet Ramey, 2015/03/06
Re: bash-4.3.33 regexp bug, Chet Ramey, 2015/03/06