You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In - line 3:
echo $i
^-- SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
echo "$i"
In - line 6:
echo $i
^-- SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
echo "$i"
In - line 9:
echo $i
^-- SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
echo "$i"
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
Here's what I wanted or expected to see:
no warnings
The text was updated successfully, but these errors were encountered:
For bugs
For new checks and feature suggestions
Here's a snippet or screenshot that shows the problem:
Here's what shellcheck currently says:
Here's what I wanted or expected to see:
no warnings
The text was updated successfully, but these errors were encountered: