I want to print the string containing backslash at the end.
echo "test\";
echo "test\\";
I expect the o/p like.
test\
test\\
But in first case i am getting
Syntax error, unexpected end of file
In second case i am getting below result.
test\
Please help me to achieve the expected o/p. Thank you