1 SC2282
Vidar Holen edited this page 2020-12-30 20:20:15 -08:00

Variable names can't start with numbers, so this is interpreted as a command.

Problematic code:

411toppm=true

Correct code:

_411toppm=true

Rationale:

You appear to be assigning to a variable name that starts with a digit. This is not allowed: variables must start with A-Z, a-z or _.

Switch to a variable name that does not start with a digit.

Exceptions:

None

  • Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!