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
In drake's document, it saids that $[VAR] string substitution does work inside a command, but i found that it does NOT work (with drake 0.1.5).
$[VAR] string substitution does work inside a command
In the document (section Command substitution), there is an example:
TEXT="a b c" VAR=$(echo "$[TEXT]" | wc -w) ; "3"
I tried it but the value of VAR is 1.
1
The text was updated successfully, but these errors were encountered:
This bug seems only occurs in v0.1.5. It works in v0.1.4 and early versions.
Sorry, something went wrong.
The bug is caused by commit 7eaf49e
Successfully merging a pull request may close this issue.
In drake's document, it saids that
$[VAR] string substitution does work inside a command
, but i found that it does NOT work (with drake 0.1.5).In the document (section Command substitution), there is an example:
I tried it but the value of VAR is
1
.The text was updated successfully, but these errors were encountered: