Defining variables and how to access values.
Variables are defined them as below -
variable_name=variable_value
so for example, is variable is to be defined a string value such as variable “name” then it to be defined as below
Name=”Tony Mark”
echo $Name
In above using dollar “$” sign the value of variable can be used/exposed.