multiple comment in linux terminal code example
Example 1: shell comments
# This is a comment on powershell.
# It will work on bash too.
Example 2: linux multiline commet
# if [[ $VAR -gt 10 ]]; then
# echo "Variable is greater than 10."
# fi
# This is a comment on powershell.
# It will work on bash too.
# if [[ $VAR -gt 10 ]]; then
# echo "Variable is greater than 10."
# fi