ECHOS?

May 20, 2008
12,351
135
Syracuse, NY, USA
I want to ECHOS Signals:` ` and then run an external and have everything on one line. I also want everything to be appended to a file. I can't get it to work. Here's a simplified version that I can't get on one line (neither in the console nor in the file)

Code:
v:\> echos abc | tee /a abcdef.txt & echo cde | tee /a abcdef.txt
abc
cde

v:\> type abcdef.txt
abc
cde

Where's the newline coming from?