This pull request contains a simple modification to the script to improve compatibility with systems that do not support the \w shorthand in Basic Regular Expressions (BRE). This change ensures consistent behavior across different environments by replacing the \w shorthand with the [A-Za-z0-9_] character range. Changes Made: Replaced all instances of \w with the [A-Za-z0-9_] character range. Reason for the Change: The \w shorthand, which represents word characters, is not universally supported, notably in the case of FreeBSD. This change ensures portability and maintains a consistent behavior across various systems. This modification will allow the script to function correctly on a wider range of platforms.pull/68/head
parent
88c73e30f8
commit
1b6ad3c97f
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue