combining two text files

Get help with installation and running here.

Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators

Post Reply
lauraselva

combining two text files

Post by lauraselva »

how to merge two text files using dos command is ther any dos command that appends one file to teh end of another file
Bertil E

Combining text files

Post by Bertil E »

Use the command COPY to append files in a DOS window:
COPY A.TXT + B.TXT C.TXT
This line will create the file C.TXT from the files A.TXT and B.TXT
JussiJ

Post by JussiJ »

This will also do it:

Code: Select all

type a.txt > c.txt
type b.txt >> c.txt
The > creates the c.txt file while the the >> appends to the file.
Post Reply