Bash - Heredocs

https://tldp.org/LDP/abs/html/here-docs.html

cat > hello.txt << EOF
Hello World
EOF

Quote the delimeter to prevent parameter and variable expansion, command substitution, arithmetic expansion, or pathname expansion.

cat > hello.txt << "EOF"
Hello World
EOF