-
Notifications
You must be signed in to change notification settings - Fork 31
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
Single quotes prevent interpolation #4
Comments
I wouldn't say that this is an explicitly designed behavior, but I think it is reasonable. The shell works that way, there's no interpolation in single quotes.
will do what you want |
Well, I'm not sure it's the most readable & comfortable option... Let's take another example: notify-send "Hello from $PWD" |
Adjacent tokens are concated into a single arg. But I do agree that this is kinda silly. I think I need to bite the bullet and implement proper escapensequences and double quoted strings, so that your example just works. |
I think that would be a valuable improvement. Thanks in advance ! |
So it is okay to close this issue. |
produces
instead of the expected
The text was updated successfully, but these errors were encountered: