Hi,
I was trying to redirect the output of two variables to different columns of a .csv file in MS excel like this,
Code:
echo "$a \t $b" > abc.csv
But I am getting both $a and $b in the same column, is there anything I can use instead of \t to move the value of $b to the next column? Or is there a good different approach to do it?
Thanks