importpw / import

`import` is a simple and fast module system for Bash and other Unix shells
https://import.sh
MIT License
338 stars 10 forks source link

Fix grep for literal question mark #41

Closed isotes closed 4 years ago

isotes commented 4 years ago

For default basic regular expressions (BRE), '?' is literal and '\?' is repetition.

Fixes "grep: bad regex '\?': Repetition not preceded by valid expression" in tests.

TooTallNate commented 4 years ago

Thank you!