PDA

View Full Version : looking for Windows batch command similar to echo


lphillips427
10-26-2009, 09:40 PM
Hi,

I am looking for a windows batch command similar to "echo" but that does not start a new line each time it is called.

For example:
echo "hi " >> output.txt
echo "there" >> output.txt

makes output.txt file
hi
there

I need something that would create
hi there

Thank you in advance for your help!
-lp