-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1053
Joachim Ansorg edited this page Nov 12, 2021
·
3 revisions
if mycommand; then echo "True"; else; echo "False"; fi
if mycommand; then echo "True"; else echo "False"; fi
else
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