Quotes are automatically added when using the home directory #377
Unanswered
xicheng412
asked this question in
Help needed
Replies: 1 comment 1 reply
-
Well, this is little bit more complicated question. First, please, read https://github.com/google/zx/blob/main/docs/quotes.md. Right now, no substitution is made for ~ tilda. We can take a look on how it’s implemented right now in bash and do the same. Problem with allowing tilda: how are you going to do this:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
when I use the following code
Expected Behavior
shell run the command
> ls ~
Actual Behavior
home directory changed
> ls $'~'
reason
In the file
src/index.mjs
the filter dose not contain ~.
How should I write it when I need to use a path that includes the home directory?
Beta Was this translation helpful? Give feedback.
All reactions