# This is a Bash comment.
echo "This is Code" # This is an inline Bash comment.
Every line starting with the '#' sign cause the following content to be ignored.
# ignored
# This is a comment in Shell/Bash Script.
# '#' Symbol is used show a comment.
# Comments syntax for bash files
# This is a "inline "comment (it lasts till the end of the line)
echo " ==== Starting bash file ... ==== "
# multi-line Comments syntax for bash files
: '
This is a wonderful
multi-line
comments useful for documentation
Purposes '
# inline comment
echo " ==== Ending bash file ... ===="
#Single line comment
echo "hello world"
# Bash comment
#SINGLE COMMENT
<<COMMENT
MULTILINE COMMENT
COMMENT
: '
MULTILINE COMMENT
'
echo "Hello Wordl"