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
Using set and the /p parameter you can echo without newline:
set
/p
C:\> echo Hello World Hello World C:\> echo|set /p="Hello World" Hello World C:\>
Source