Writing Bash Script

First line of bash shell script begin with shebang:-

#!

We can use escape caracter in script. \ , ' ' , " "

Single quote ' ' will preserver the text

Double quote " " will inteprete the command


Variable

-Variable name cannot start with number
-equal sing '=' used to assign values to variable.



Comments