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 made a function out of @arnep 's idea:
echo|set /p="Hello World"
here it is:
:SL (sameline) echo|set /p=%1 exit /b
Use it with call :SL "Hello There" I know this is nothing special but it took me so long to think of it I figured I'd post it here.
call :SL "Hello There"