I have "INSTALLMODE=BASIC" key value pair defined in my config file. And, I am splitting these key value pairs and assigning them as below.
INSTALLMODE=BASIC
key=INSTALLMODE
x=`echo $key`
Now, I want to get value of $x as BASIC. How could I do that.
Thank you.