-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1118
koalaman edited this page Jul 8, 2017
·
1 revision
"▭" below indicates an otherwise invisible space:
cat << "eof"
Hello
eof▭
cat << "eof"
Hello
eof
The end token of your here document has trailing whitespace. This is invisible to the naked eye, but shells do not accept it.
Remove the trailing whitespace.
None.