-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regular expression compile failed (bad class) #7
Comments
Hm, apparently a common AWK on Debian Stretch is Regardless – escaping the |
Many AWK implementations appears to allow unescaped slashes inside a bracket expression in a regular expression literal, consistent with the way that most metacharacters lose their meaning inside bracket expressions (tested: GNU Awk 4.2.1, mawk 1.3.4, and BWK awk (nawk) 20121220, all on Arch Linux); however, some versions also appear to require such a slash to be escaped (tested: mawk 1.3.3 on Debian Stretch), and this appears to be consistent with POSIX, which in the Lexical Conventions, number 6, states that “[a]n ERE constant shall be terminated by the first unescaped occurrence of the <slash> character after the one that begins the ERE constant.” Escaping the slash appears to be safe in all tested versions (that is, it does not count the backslash as part of the bracket expression), so let’s do that to ensure the program also works with mawk 1.3.3 on Debian Stretch, fixing dspinellis#7.
Cloned and
make install
latest version but can't seem to get it to work on a just installed Debian 9.4 machine.Attempting to run tests:
The text was updated successfully, but these errors were encountered: