bengalliboy
MIS
Hi
I am concatinating 3 variables into a file. It works fine:
a='I'
b='a'
c='m'
echo $a $b $c >fileresult
: I a m
Would it be possible to take the space out between $b and $c so that I get
: I am
Thanks
I am concatinating 3 variables into a file. It works fine:
a='I'
b='a'
c='m'
echo $a $b $c >fileresult
: I a m
Would it be possible to take the space out between $b and $c so that I get
: I am
Thanks