-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2258
Rushen Wang edited this page Sep 9, 2024
·
1 revision
for f in foo, bar, baz
do
echo "$f"
done
for f in foo bar baz
do
echo "$f"
done
or
for f in "foo," "bar," "baz,"
do
echo "$f"
done
ShellCheck found a for
loop where the items appear to be separated by commas. These will be treated as literal commas. If the commas are part of the value, enclose them in quotes, or remove them.
None
- Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!