I want input file like -
a="Hello"
echo "$a ${foobar}"
Output i get is -
Hello
But i want output like this -
Hello ${foobar}
How can i accomplish this is bash script?
I want input file like -
a="Hello"
echo "$a ${foobar}"
Output i get is -
Hello
But i want output like this -
Hello ${foobar}
How can i accomplish this is bash script?