Skip to content

Files

Latest commit

 

History

History
28 lines (18 loc) · 589 Bytes

SC2201.md

File metadata and controls

28 lines (18 loc) · 589 Bytes

Pattern: Use of brace expansion in [[ ]]

Issue: -

Description

Brace expansions doesn't happen in [[ ]]. They will just be interpreted literally.

Instead, use a for loop to iterate over values, and apply your condition to each.

Example of incorrect code:

[[ "$file" = index.{htm,html,php} ]] && echo "This is the main file"

Example of correct code:

for main in index.{htm,html,php}
do
  [[ "$file" = "$main" ]] && echo "This is the main file"
done

Further Reading