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

Quote/escape special characters when using eval, e.g. eval "a=(b)".

Problematic code:

eval $var=(a b)

Correct code:

eval "$var=(a b)"

Rationale:

Shells differ widely in how they handle unescaped parentheses in eval expressions.

  • eval foo=bar is allowed by dash, bash and ksh.
  • eval foo=(bar) is allowed by bash and ksh, but not dash.
  • eval $var=(bar) is allowed by ksh, but not bash or dash.
  • eval foo() ( echo bar; ) is not allowed by any shell.

Since the expression is evaluated as shell script code anyways, it should be passed in as a literal string without relying on special case parsing rules in the target shell. Quote/escape the characters accordingly.

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