Missing space before `#`SH-1099
Found a keyword immediately followed by a #
.
In order for the #
to start a comment, it needs to come after a word boundary such as a space.
Problematic code:
while sleep 1
do# show time
date
done
Preferred code:
while sleep 1
do # show time
date
done