Created
April 13, 2017 18:26
-
-
Save tanzyy/e57f4e23798d63369b69d68ccdf3e38b to your computer and use it in GitHub Desktop.
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 | |
# This script shows how to make multiline comment. Indentation is mandatory inside "comment". | |
echo "This should get printed: Before multiline comment" | |
: <<'Comment' | |
echo "This should NOT get printed: Inside multiline comment" | |
Comment | |
echo "This should get printed: After multiline comment" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment