I have 2 variable :$table and $i
table=test
i=1
when i try to separate these two variables with tab with the below command:
echo "$table\t$i\tSuccess" > success.txt
The output is
test\ti
The desired output is
test 1
Appreciate valuable suggestions.