bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bug of grep -E


From: John Cowan
Subject: Re: Bug of grep -E
Date: Wed, 6 Dec 2017 10:45:25 -0500

Backslash is not an escape in character classes.  The only way to get a -
in a character class is to make sure it is at the end or the beginning.  So
in your second pattern, the sequence \-% means "every character from
backslash to percent', which is no characters at all.

On Wed, Dec 6, 2017 at 10:02 AM, iPack <address@hidden> wrote:

> address@hidden ~]$ cat test
> https://konachan.com/image/a4ff5caad2fa35faa2271df9badacd
> 35/Konachan.com%20-%20255941%20blush%20brown_eyes%20crying%
> 20fate_kaleid_liner_prisma_illya%20fate_%28series%29%
> 20japanese_clothes%20kimono%20long_hair%20miyu_edelfelt%
> 20purple_hair%20tagme_%28artist%29%20tears.jpg
>
> address@hidden ~]$ cat test | grep -Eo '[0-9a-f]{32}/[0-9A-Za-z%_\.\-
> ]+'
> a4ff5caad2fa35faa2271df9badacd35/Konachan.com%20-%20255941%
> 20blush%20brown_eyes%20crying%20fate_kaleid_liner_prisma_
> illya%20fate_%28series%29%20japanese_clothes%20kimono%
> 20long_hair%20miyu_edelfelt%20purple_hair%20tagme_%28artist%29%20tears.jpg
>
> address@hidden ~]$ cat test | grep -Eo '[0-9a-f]{32}/[0-9A-Za-z\-%_\.
> ]+'
> a4ff5caad2fa35faa2271df9badacd35/Konachan.com%20
>
> It is bug ? or just my syntax error ?


reply via email to

[Prev in Thread] Current Thread [Next in Thread]