multiline comment in shell script bash 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: multi line comment in shell script
# Multi Line Comment
: '
This is a
very neat comment
in bash
'