What is the Windows batch equivalent of the Linux shell command echo -n which suppresses the newline at the end of the output?
echo -n
The idea is to write on t
I believe there's no such option. Alternatively you can try this
set text=Hello set text=%text% world echo %text%