“echo -n” prints “-n”

I have a problem with echo in my script: echo -n “Some string…” prints -n Some string… and moves to the next line. In the console it’s working correcly without newline: Some string… 1Best Answer 11 There are multiple versions of the echo command, with different behaviors. Apparently the shell used for your script uses … Read more