Last active
October 11, 2019 08:03
-
-
Save f-steff/22d88c94b0787bdd16d7e39f73569772 to your computer and use it in GitHub Desktop.
How to comment out bit pieces of code simple and effective.
This file contains hidden or 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/bash | |
echo "Multi line comments in Bash" | |
: ' | |
blah blah | |
blah blah | |
blah blah | |
blah blah | |
blah blah | |
# ' | |
echo "All done done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Explanation:
:
is shorthand fortrue
andtrue
does not process any parameters. (manual page:SYNOPSIS true [ignored command line arguments]