From: Paul H on
Back in DOS days I could concatenate text files without using a third party
tool. Can I do this with XP, Vista, or W7? TIA, Paul

From: Tim Slattery on
"Paul H" <NoSpamphobergNoSpam(a)att.net> wrote:

>Back in DOS days I could concatenate text files without using a third party
>tool. Can I do this with XP, Vista, or W7? TIA, Paul

Yes, the same way you did before:

copy file1.txt + file2.txt fileboth.txt

Type

copy /?

at a command prompt to find out all about the copy command.

--
Tim Slattery
Slattery_T(a)bls.gov
http://members.cox.net/slatteryt
From: John John - MVP on
Paul H wrote:
> Back in DOS days I could concatenate text files without using a third
> party tool. Can I do this with XP, Vista, or W7? TIA, Paul

At the Command Prompt with the Copy command:

copy file1+file2+file3 newfile.txt

John
From: Pegasus [MVP] on


"John John - MVP" <audetweld(a)nbnet.nb.ca> wrote in message
news:eNeK56m1KHA.348(a)TK2MSFTNGP02.phx.gbl...
> Paul H wrote:
>> Back in DOS days I could concatenate text files without using a third
>> party tool. Can I do this with XP, Vista, or W7? TIA, Paul
>
> At the Command Prompt with the Copy command:
>
> copy file1+file2+file3 newfile.txt
>
> John

This works fine for text file (as your example suggests) but for binary
files the /b switch is required:

copy /b file1+file2+file3 newfile.bin