-
Notifications
You must be signed in to change notification settings - Fork 95
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
ANSI-C quoted strings $'' aren't supported #60
Comments
This may be a similar issue, or my own misunderstanding of bashlex:
I expected the following output instead:
|
@d4g33z that is unrelated to this issue and bashlex lexes your example correctly. This is how bash interprets that: $ tag="world"
$ echo hello=" $tag"
hello= world
$ In other words, |
Sorry to hijack the issue. I'll have to revisit parsing += assignments that concatenate strings with white space. Thanks, it's a great library. |
https://www.gnu.org/software/bash/manual/html_node/ANSI_002dC-Quoting.html
Expected result:
Actual result (
bashlex
0.15):The text was updated successfully, but these errors were encountered: