ShellCheck
Installation
Usage
Integrating and extending
Severity
Template
Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature above to find a specific one, or see Checks.
[
if[ -e file ] then echo "exists"; fi
if [ -e file ] then echo "exists"; fi
ShellCheck found a keyword immediately followed by a [. There needs to be a space between them.
None