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
Based on the documentation using "${ARRAY}" and looping over the items results in a single item instead of looping over each item in an array.
ARRAY=(a b c d) for i in "${ARRAY}" echo i
This prints out:
a b c d
as opposed to:
all
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is there an existing issue for this?
Describe the bug?
Based on the documentation using "${ARRAY}" and looping over the items results in a single item instead of looping over each item in an array.
To Reproduce
This prints out:
as opposed to:
What OS are you seeing the problem on?
all
Expected behavior?
Relevant log output
No response
Anything else?
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: