Comment In Bash

[Solved] Comment In Bash | Abap - Code Explorer | yomemimo.com
Question : shell bash comment

Answered by : riccardo-biffi

Every line starting with the '#' sign cause the following content to be ignored.
# ignored

Source : | Last Update : Thu, 25 Aug 22

Question : comments in bash file

Answered by : federico-8bc6gem6y3ev

# Comments syntax for bash files
# This is a "inline "comment (it lasts till the end of the line)
echo " ==== Starting bash file ... ==== "
# multi-line Comments syntax for bash files
: '
This is a wonderful
multi-line
comments useful for documentation
Purposes '
# inline comment
echo " ==== Ending bash file ... ====" 

Source : https://www.geeksforgeeks.org/comments-in-shell-script/ | Last Update : Sat, 13 Aug 22

Question : comment in shell script

Answered by : abhishek-tilkar

#Single line comment
echo "hello world"

Source : https://www.geeksforgeeks.org/comments-in-shell-script/ | Last Update : Fri, 15 Apr 22

Answers related to comment in bash

Code Explorer Popular Question For Abap