Skip to content
koalaman edited this page Jan 14, 2017 · 1 revision

This is an unquoted HTML entity. Replace with corresponding character.

Problematic code:

foo && bar

Correct code:

foo && bar

Rationale:

There is an unquoted HTML entity, such as &amp;, &gt; or &lt; (instead of &, > and <) in your code. This usually happens when copy-pasting from a web site that has mismanaged its code formatting.

You should go through the entire script and replace HTML entities with their corresponding characters.

Don't rely on ShellCheck to detect all of them. ShellCheck only warns about certain cases in certain contexts, while this issue tends to affect the entire script.

Exceptions:

If you want to run a command called amp after backgrounding another command, add a space: foo & amp;.

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