How to create multiple line comments in Bash?

17

Use : ' to open and ' to close.

For example:

: '
This is a
very neat comment
in bash
'
Source https://stackoverflow.com/questions/43158140/way-to-create-multiline-comments-in-bash
Comments