Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

comment shell bash

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

comment in shell script

# This is a comment in Shell/Bash Script.
# '#' Symbol is used show a comment.
Comment

shell comments

# This is a comment on powershell.
# It will work on bash too.
Comment

comments in bash file

# 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 ... ===="
 
Comment

comment in shell script

#Single line comment
echo "hello world"
Comment

comment in bash

#SINGLE COMMENT

<<COMMENT
 MULTILINE COMMENT
COMMENT

: '
 MULTILINE COMMENT
'

echo "Hello Wordl"
Comment

PREVIOUS NEXT
Code Example
Shell :: break line bash 
Shell :: stop nginx server 
Shell :: apache license 
Shell :: make multiple directories with a single command on windows 
Shell :: homebrew on mac 
Shell :: mac os install brew 
Shell :: brew install ubuntu 
Shell :: Invalid response body while trying to fetch 
Shell :: install freetype globally on ubuntu 
Shell :: how to change bash prompt color 
Shell :: git origin set branch 
Shell :: bash store contents of file in array 
Shell :: bash for loop multiple statements 
Shell :: ubuntu check tomcat version 
Shell :: open current folder in explorer from cmd 
Shell :: change commit message 
Shell :: how to update code in github 
Shell :: git clone in ubuntu 
Shell :: bash 
Shell :: linux move everything in a directory to another directory 
Shell :: how to install git in ubuntu ? 
Shell :: create crt and key 
Shell :: set up ssh windows 10 
Shell :: powershell get value from registry key 
Shell :: install scikit learn 
Shell :: bash split and get last 
Shell :: how to install pymongo 
Shell :: raspberry wifi scan 
Shell :: git: create and remove git alias command 
Shell :: installing sdk manager on ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =