Welcome!

By registering with us, you'll be able to discuss, share and exchange private messages with other members of our community.

SignUp Now!

Fixed Piping to HEAD adds newlines

May
12,645
155
Code:
v:\> do i=1 to 3 ( echo %i >> 123.txt )

v:\> head 123.txt
1
2
3

v:\> type 123.txt | head
1

2

3
 

Similar threads

Back
Top