[pcre-dev] [Bug 2505] New: pcregrep -M 'a|b'

Top Page
Delete this message
Author: admin
Date:  
To: pcre-dev
Subject: [pcre-dev] [Bug 2505] New: pcregrep -M 'a|b'
https://bugs.exim.org/show_bug.cgi?id=2505

            Bug ID: 2505
           Summary: pcregrep -M 'a|b'
           Product: PCRE
           Version: 8.35
          Hardware: x86-64
                OS: Linux
            Status: NEW
          Severity: bug
          Priority: medium
         Component: Code
          Assignee: ph10@???
          Reporter: stepaniukmv@???
                CC: pcre-dev@???


$ printf 'a\nb\nababab\n' > file
$ pcregrep 'a|b' file
a
b
ababab
$ pcregrep -M 'a|b' file
$ pcregrep -M 'a||b' file
a
b
ababab

--
You are receiving this mail because:
You are on the CC list for the bug.