Multi line comments in a bash script

Use : ' to start the comment and ' to close it. See the example below:

: '
echo 'foo'
'

Source