I assigned a var like this:
MYCUSTOMTAB=' ' But using it in echo both:
echo $MYCUSTOMTAB"blah blah" or
echo -e $MYCUSTOMTAB"blah blah" just returnreturns a single space and the rest of the string:
blah blah How can I print the full string untouched without having it being randomly raped by the echo command? I want to use it for have a custom indent because \t is too much wide for my tastes.