Shell

Shell

Made by DeepSource

Unquoted HTML entity found SH-1109

Bug risk
Major

There is an unquoted HTML entity, such as &amp;, &gt; or &lt; (instead of &, > and <) in your code. It is recommended to replace HTML entities with their corresponding characters.

Problematic code:

foo && bar

Preferred code:

foo && bar

Exception:

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