I have two variables and I have to append the value of both variable into a 3rd variable by giving 4 spaces in between the variable.
for eg:
$ a="a"
$ b="b"
$ echo $a"     "$b
output:
a    b
when I am doing
$ c=$(echo $a"    "$b)
$ echo $c
output:
a b
Required output:
a    b
 
    