We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mkdir -p ./{new/{new1,new2},old}
callProcess "mkdir" ["-p" , "./{new/{new1,new2},old}"] callCommand "mkdir -p ./{new/{new1,new2},old}"
. ├── {new │ └── {new1,new1},old}
tree . . ├── new │ ├── new1 │ └── new1 └── old
I printed shell command with :- showCommandForUser "mkdir" ["-p" , "./{new/{new1,new2},old}"]
this single single quotes around directory name causing problem how can i fix this
The text was updated successfully, but these errors were encountered:
The {} syntax is brace expansion from bash (https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Brace-Expansion). You will need to run your expression through bash to get the behavior you are after.
Sorry, something went wrong.
No branches or pull requests
shell command :-
mkdir -p ./{new/{new1,new2},old}
tested with :-
callProcess "mkdir" ["-p" , "./{new/{new1,new2},old}"]
callCommand "mkdir -p ./{new/{new1,new2},old}"
result :-
.
├── {new
│ └── {new1,new1},old}
expected output :-
tree .
.
├── new
│ ├── new1
│ └── new1
└── old
I printed shell command with :-
showCommandForUser "mkdir" ["-p" , "./{new/{new1,new2},old}"]
output :- "mkdir -p './{new/{new1,new2},old}'"
this single single quotes around directory name causing problem
how can i fix this
The text was updated successfully, but these errors were encountered: