You can quote the EOF indicator to disable variable interpretation.
#!/bin/bash cat > thingy << 'EOT' blah $blah EOT
Text in a file descriptor :
exec 4<<EOF
toto
titi
EOF
while read i <&4; do
echo $i
done
Additional tag : heredocument
You can quote the EOF indicator to disable variable interpretation.
#!/bin/bash cat > thingy << 'EOT' blah $blah EOT
Text in a file descriptor :
exec 4<<EOF
toto
titi
EOF
while read i <&4; do
echo $i
done
Additional tag : heredocument