Skip to content

Files

Latest commit

 

History

History
27 lines (18 loc) · 430 Bytes

SC1136.md

File metadata and controls

27 lines (18 loc) · 430 Bytes

Pattern: Unexpected character after ]/]]

Issue: -

Description

Make sure the ] or ]] is not immediately followed by another shell word character.

Example of incorrect code:

if [ -e "foo.txt" ]: then
  echo "Exists"
fi

Example of correct code:

if [ -e "foo.txt" ]; then
  echo "Exists"
fi

Further Reading