-
-
Notifications
You must be signed in to change notification settings - Fork 353
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
Variable transformation does not work with arrays #1081
Comments
For the unaware (such as myself): The The
There are 9 other operators defined in the GNU Bash documentation. This package handles only Lines 315 to 337 in 793d364
Edit: And, obviously, it doesn't work for arrays, regardless. |
Ah, it seems you are right about only $ gosh -c 'var=("some" "with space"); echo "${var[@]@K}"'
some with space |
Using
"${array[@]@Q}"
does not work as expected (I tried some other operators as well and assume this applies to all operators, not just@Q
specifically).As you can see, in the last line the result is not quoted.
The text was updated successfully, but these errors were encountered: