block comment bash
# Bash doesn't have block comments like Python
# HOWEVER!
# Similarly like Python, there is a way to bypass this limitation
# Try using this workaround in your files
variableName='''
block comment goes here
'''
block comment bash
# Bash doesn't have block comments like Python
# HOWEVER!
# Similarly like Python, there is a way to bypass this limitation
# Try using this workaround in your files
variableName='''
block comment goes here
'''
bash script block comments
# Apparently block comments don't exist in shell scripts.
# With vi or vim you can comment many lines at a time with this syntax:
:start_row, end_row s/^/#/
# For example:
:10,100s/^/#/ # To comment lines 10 to 100
# To uncomment, use:
:10,100s/^#//
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us