SC1066 – ShellCheck Wiki

See this page on GitHub

Sitemap


Don't use $ on the left side of assignments.

Problematic code:

$greeting="Hello World"

Correct code:

greeting="Hello World"

Alternatively, if the goal was to assign to a variable whose name is in another variable (indirection), use declare:

name=foo
declare "$name=hello world"
echo "$foo"

Or if you actually wanted to compare the value, use a test expression:

if [ "$greeting" = "hello world" ]
then
  echo "Programmer, I presume?"
fi

Rationale:

Unlike Perl or PHP, $ is not used when assigning to a variable.

Exceptions

None.


ShellCheck is a static analysis tool for shell scripts. This page is part of its documentation.