Skip to content

Instantly share code, notes, and snippets.

@tanzyy
Created April 13, 2017 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanzyy/e57f4e23798d63369b69d68ccdf3e38b to your computer and use it in GitHub Desktop.
Save tanzyy/e57f4e23798d63369b69d68ccdf3e38b to your computer and use it in GitHub Desktop.
#!/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