koalaman / shellcheck Public
SC1042
spoelstraethan edited this page Apr 28, 2022
·
6 revisions
Close matches include -eof (!= eof).
Problematic code:
#!/bin/bash
cat <<-eof
Hello World
-eofCorrect code:
#!/bin/bash
cat <<- eof
Hello World
eofRationale:
See companion error SC1041. This error occurs at the same time it.