Skip to content
Joachim Ansorg edited this page Nov 12, 2021 · 4 revisions

Don't use $ on the iterator name in for loops.

Problematic code:

for $var in *
do
  echo "$var"
done

Correct code:

for var in *
do
  echo "$var"
done

Rationale:

The variable is named var, and can be expanded to its value with $var.

The for loop expects the variable's name, not its value (and the name can not be specified indirectly).

Exceptions

None.

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature guerraart8 to find a specific , or see Checks.

Clone this wiki locally