multi line comment in shell script 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: comment in shell script

# This is a comment in Shell/Bash Script.
# '#' Symbol is used show a comment.

Example 3: multiline comment in bash

: << 'comment1'
	what ver you want to comment
comment1

Example 4: single line comment in shell script

# This is a Bash Single Line Comment.
echo "This is Code" # This is an inline Bash comment.

Example 5: multi line comment in shell script

# Multi Line Comment
: '
This is a
very neat comment
in bash
'

Example 6: bash multiline comment

: '
This is a
very neat comment
in bash
'