- May
- 13,750
- 209
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)
Where's the newline coming from?
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?