bash multi line comments code example
Example 1: bash comment
# This is a Bash comment.
echo "This is Code" # This is an inline Bash comment.
Example 2: linux multiline commet
# if [[ $VAR -gt 10 ]]; then
# echo "Variable is greater than 10."
# fi