Citar EOF
:
$ var=foo
$ cat << EOF
> $var
> EOF
foo
$ cat << 'EOF'
> $var
> EOF
$var
De man bash
:
If any characters in
word
are quoted, the delimiter is the result of quote removal on word, and the lines in the here-document are not expanded.