Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

Bash/Shell comment multiple lines

: '
This is a
very neat comment
in bash
'

# Don't forget the : sign at the beginning
Comment

multi line comment in bash shell

<<comment-tag
comment/code goes here
comment-tag

Use '<<' operators to start the comment, and add a comment tag.
To end the comment use the same comment tag.
Comment

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
Comment

multiline comment in bash

: << 'AAA'
	what ver you want to comment
AAA
Comment

commenting multiple-line 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

bash multiline comment

: '
This is a
very neat comment
in bash
'
Comment

multi line comment in shell script

# Multi Line Comment
: '
This is a
very neat comment
in bash
'
Comment

PREVIOUS NEXT
Code Example
Shell :: docker format 
Shell :: How to remove Directories with rm 
Shell :: how to solve the brightness problem on unbuntu 
Shell :: kubectl apply 
Shell :: zsh shell 
Shell :: linux history delete line 
Shell :: docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?. 
Shell :: how to revert to log in git 
Shell :: download spotify linux 
Shell :: delete last pushed commit 
Shell :: mac tftp server directory 
Shell :: execution policy powershell single script 
Shell :: git pull on branch 
Shell :: upload local to remote ssh 
Shell :: install h5py in jetson nano 
Shell :: bluetoothctl list paired devices 
Shell :: npm start script not found 
Shell :: The current application is not compatible with NativeScript CLI 8.0.2 
Shell :: how to add your project to github 
Shell :: deploy on heroku 
Shell :: setup commandline vscode in mac 
Shell :: bash: count number of lines 
Shell :: change the keyboard language in i3wm 
Shell :: push only one commit git 
Shell :: linux change user shell /bin/false 
Shell :: grep all lines after first match 
Shell :: catkin install 
Shell :: bash array append 
Shell :: git clone a specific release 
Shell :: cht sht zsh completion 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =