-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1051
koalaman edited this page Jul 9, 2017
·
3 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