A free text file joiner

prouser01

Junior Member
Joined
Nov 14, 2008
Messages
115
Reaction score
0
what i am trying to do is join two text (.txt) files using a software but not sure where I can get one for free. So, please if anyone knowns a text joiner that joins multiple .txt files into one, post it here!
 
Last edited:
you can do that with ms dos.

Search google howto for merge two files with msdos
 
Open cmd.exe, go to the .txt files directory and type:
Code:
COPY /B file01.txt+file02.txt merged.txt

Also works:
Code:
COPY /B *.txt merged.txt

Enjoy
 
Back
Top