Answers for "multi line comment in shell script"

4

multiline comment in bash

# Just do something like this for multiple line comment

: 'I am the first line and
   the second line and 
   the third line here
   '
# Don't forget the : sign
Posted by: Guest on June-03-2021
9

comment in shell script

# This is a comment in Shell/Bash Script.
# '#' Symbol is used show a comment.
Posted by: Guest on May-02-2020
1

bash multiline comment

: '
This is a
very neat comment
in bash
'
Posted by: Guest on January-20-2021
0

multiline comment in bash

: << 'AAA'
	what ver you want to comment
AAA
Posted by: Guest on February-10-2021
0

multi line comment in shell script

# Multi Line Comment
: '
This is a
very neat comment
in bash
'
Posted by: Guest on May-02-2020
0

single line comment in shell script

# This is a Bash Single Line Comment.
echo "This is Code" # This is an inline Bash comment.
Posted by: Guest on May-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language