multiline command bash code example
Example 1: bash multiline ech
cat <<EOT >> my_file.txt
my text line 1
my text line 2
EOT
Example 2: bash multiline comment
: '
This is a
very neat comment
in bash
'
cat <<EOT >> my_file.txt
my text line 1
my text line 2
EOT
: '
This is a
very neat comment
in bash
'