I have the following code in a .sh file:
echo "$pasta/Dados/$MA/$ano\_$mes/$tabela"
With all variables set correctly. However, there you run the script, echo results in
data-integration/Dados/MA1/2015\_11/HT_MA1_ESS_SEG
While I would like the result to be
data-integration/Dados/MA1/2015_11/HT_MA1_ESS_SEG
Is there any other syntax for this situation? Thank you.