How to pass variables to a HEREDOC in bash?
I want to do something like this:
$ NAME=John
$ cat << '==end' > test
My name is $NAME
==end
$ cat test
My name is JohnAny ideas?
1 Answer
cat <<EOF > test
My name is $NAME
EOFor even
cat <<==end > test
My name is $NAME
==endWorked for me.
Looks like when you take ==end in the ' variable doesn't substitute.
ah, here it is in the man page (look 3.6.6):
2The format of here-documents is:
<<[-]word here-document delimiterNo parameter expansion, command substitution, arithmetic expansion, or pathname expansion is performed on word. 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. If word is unquoted, all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion. [...]