-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1069
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
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