January 09, 2021
cat EOF in bash
My problem of the day was trying to echo multiline into a file.
echo "first line" >> file.txt
echo "second line" >> file.txt
Thank you, 🐱
cat <<EOF > file.txt
this is my first line
of my awesome haiku start
this is so easy
EOF