Answers for "bash script block comments"

1

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/^#//
Posted by: Guest on April-28-2021
1

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/^#//
Posted by: Guest on April-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language