Commenting Shell Script
#!/bin/bash
echo "PreProcessing"
<<COMMENT_HERE
whatever will go here
and here ..
COMMENT_HERE
echo "Further Processing"
--------- OR ---------
if false
then
Everything else here for Testing!!!
fi
EDITED:
Got more information here
http://stackoverflow.com/questions/1444367/commenting-out-a-set-of-lines-in-a-shell-script
Comments
Post a Comment