bash mutiline comment code example
Example 1: multiline comment in bash
# Just do something like this for multiple line comment
: 'I am the first line and
the second line and
the third line here
'
# Don't forget the : sign
Example 2: multiline comment in bash
: << 'comment1'
what ver you want to comment
comment1
Example 3: bash multiline comment
: '
This is a
very neat comment
in bash
'