writing comment in shell script code example
Example 1: comment in shell script
# This is a comment in Shell/Bash Script.
# '#' Symbol is used show a comment.
Example 2: comment in bash
#SINGLE COMMENT
<<COMMENT
MULTILINE COMMENT
COMMENT
: '
MULTILINE COMMENT
'
echo "Hello Wordl"