-1

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?

1 Answers1

0
a="Hello"
echo "$a \${foobar}"
Dri372
  • 1,275
  • 3
  • 13