Created
March 31, 2018 08:22
-
-
Save KanshuYokoo/8e908c2fee8555f71821292d54cac7f5 to your computer and use it in GitHub Desktop.
How to comment out multiple line on bash script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo bla | |
echo bla bla | |
echo bla bla bla | |
echo Before Comment out | |
:<< COMMENT | |
echo this is a comment | |
echo comment | |
echo Hello | |
COMMENT | |
echo After Comment out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment