Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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

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 :: append newline to file 
Shell :: boot linux from dos 
Shell :: docker remove 
Shell :: how to get the type of something in powershell 
Shell :: kubernetes config context change environment/cluster 
Shell :: powershell set environment variable and run command 
Shell :: bash script get last position of character in string 
Shell :: linux change password chpasswd 
Shell :: gnu octave ubuntu 
Shell :: git bring back deleted branch from local 
Shell :: abbreviated stat for git 
Shell :: Bootable flash from ubuntu terminal 
Shell :: For which GitHub repository would you like to set up a GitHub workflow? 
Shell :: git 3 way merge 
Shell :: move multiple files cmd 
Shell :: linux nano editor 
Shell :: no devices connected android studio 
Shell :: linux nano how to go to a certain line 
Shell :: git repo 
Shell :: add a file to repository git 
Shell :: set git remote heroku to https://git.heroku.com/resume-projects.git 
Shell :: composer download 
Shell :: poetry create requirements.txt python 
Shell :: npm install electron-reload 
Shell :: bash print separator null character 
Shell :: abort current task mac terminal 
Shell :: powerhsell write to output file from multiple jobs 
Shell :: install docpars 
Shell :: how to upgrade cpu of my instance in aws 
Shell :: how to install mx package manager 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =