Skip to content
Vidar Holen edited this page Oct 20, 2022 · 1 revision

Found EOF further down, but with wrong casing.

Problematic code:

cat << EOF
Hello World
Eof

Correct code:

cat << EOF
Hello World
EOF

Rationale:

ShellCheck found a here document (<<) where the end token is missing. However, the end token appears with different case further down. If this was meant to be the end of the here document, make sure the case matches.

Exceptions:

None. This error is only emitted when the here document is incomplete.

Related resources:

  • Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature guerraart8 to find a specific , or see Checks.

Clone this wiki locally