Defining variables and how to access values.

882    Asked by NishitaChoudhary in Devops , Asked on Jan 28, 2020

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.



Your Answer

Interviews

Parent Categories