xxxxxxxxxx
# 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
xxxxxxxxxx
: '
This is a
very neat comment
in bash
'
# Don't forget the : sign at the beginning
xxxxxxxxxx
<<comment-tag
comment/code goes here
comment-tag
Use '<<' operators to start the comment, and add a comment tag.
To end the comment use the same comment tag.
xxxxxxxxxx
: << 'AAA'
what ver you want to comment
AAA (press enter here)
//your code
: << 'BBB'
another multiline comment
BBB (press enter here need a new line)