Skip to content

Files

Latest commit

 

History

History
25 lines (15 loc) · 551 Bytes

SC2296.md

File metadata and controls

25 lines (15 loc) · 551 Bytes

Pattern: Parameter expansion starts with {

Issue: -

Description

ShellCheck found a parameter expansion ${something} that starts with an invalid character. In the example, this was caused by accidentally duplicating the { in ${{name}.

Double check the syntax of what you're trying to do.

Example of incorrect code:

echo "Hello ${{name}"

Example of correct code:

echo "Hello ${name}"

Further Reading