-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1052
Joachim Ansorg edited this page Nov 12, 2021
·
4 revisions
if true; then; echo "Hi"; fi
if true; then echo "Hi"; fi
then
keywords should not be followed by semicolons. It's not valid shell syntax.
You can follow them directly with a line break or another command.
None