Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

bash comment

# This is a Bash comment.
echo "This is Code" # This is an inline Bash comment.
Comment

shell bash comment

Every line starting with the '#' sign cause the following content to be ignored.
# ignored
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 line in bash file

# Bash comment
Comment

comment in bash

#SINGLE COMMENT

<<COMMENT
 MULTILINE COMMENT
COMMENT

: '
 MULTILINE COMMENT
'

echo "Hello Wordl"
Comment

bash comment section to a file

cat << ABC > ./file1.tmp
1.whatever you want
2.whatever you want
3.whatever you want
ABC

#here line 1 2 3 will go to file1.tmp
#in the script line 1 2 3 are comments
Comment

PREVIOUS NEXT
Code Example
Shell :: bash adding floats 
Shell :: nvidia proprietary driver arch linux 
Shell :: convert vmdk to qcow2 
Shell :: limits.h: No such file or directory 
Shell :: jupyter digits 
Shell :: chown command 
Shell :: ion2 calendar 
Shell :: laravel permission ubuntu lamp 
Shell :: install automapper asp.net core mvc 
Shell :: install vagrant in ubuntu 18.04 
Shell :: * daemon not running; starting now at tcp:5037 
Shell :: dev/mapper/ubuntu--vg-ubuntu--lv 
Shell :: configure github account ubuntu 
Shell :: putty ubuntu 
Shell :: How to change default install location for pip 
Shell :: cmd unzip windows 
Shell :: github comment code block new line 
Shell :: get date whit batch 
Shell :: chocolatey local installed 
Shell :: git add, commit and push in one command 
Shell :: how to run git bash from powershell 
Shell :: how to navigate to a folder in cmd windows 10 
Shell :: How to Install & Run CodeIgniter Framework 
Shell :: bash iterate over a variable range of numbers 
Shell :: git ignore after commit 
Shell :: material ui icons installation 
Shell :: django upgrade 
Shell :: pull master branch to gh-pages branch 
Shell :: how to compare percentage value in shell script 
Shell :: list files in cmd 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =