multiple line comments shell code example
Example 1: comment in shell script
# This is a comment in Shell/Bash Script.
# '#' Symbol is used show a comment.
Example 2: linux multiline commet
# if [[ $VAR -gt 10 ]]; then
# echo "Variable is greater than 10."
# fi