Is there a simple way to comment out a block of code in a shell script?
In Vim:
shift-V
:s/^/#/
the command will look like this:
:'<,'>s/^/#
hit enter
e.g.
shift-V jjj :s/^/#