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 :: cmd unzip windows 
Shell :: linux install pycharm command line without snap 
Shell :: how to delete a folder in github 
Shell :: how to merge text files into one bash 
Shell :: how to install phpmyadmin with nginx on ubuntu 20.04 
Shell :: Delete untracked file or discard unstaged work 
Shell :: can i create a git repository via terminal 
Shell :: git revert to old commit 
Shell :: install vault 
Shell :: rails add gem to gemfile 
Shell :: print in bash 
Shell :: laravel 9 
Shell :: path/to/sdkmanager --install "cmdline-tools;latest" 
Shell :: ubuntu software not showing apps 20.04 
Shell :: install kubectl on linux 
Shell :: can i do git push to heroku branch which isnt a master or main 
Shell :: bash get path of command 
Shell :: search a tag git 
Shell :: how to delete all history for specific search term in chrome 
Shell :: github config 
Shell :: heroku cli install 
Shell :: remove all files in a directory linux 
Shell :: how to make new branch and switch in git 
Shell :: list des group linux 
Shell :: list files in cmd 
Shell :: show git branch on terminal on mac 
Shell :: git --version git version 2.7.0 (Apple Git-66) 
Shell :: pull branch from remote to new local branch 
Shell :: how to set gopath/bin linux 
Shell :: scp linux 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =