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

Remove $/${} for numeric index, or escape it for string.

Problematic code:

# Regular array
index=42
echo $((array[$index]))

or

# Associative array
index=banana
echo $((array[$index]))

Correct code:

# Regular array
index=42
echo $((array[index]))

or

# Associative array
index=banana
echo $((array[\$index]))

Rationale:

For a numerically indexed array, the $ is mostly pointless and can be removed like in SC2004.

For associative arrays, the $ should be escaped to avoid accidental dereferencing:

declare -A array
index='$1'
array[$index]=42
echo "$(( array[$index] ))"    # bash: array: bad array subscript
echo "$(( array[\$index] ))"   # 42

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