From: Paul H on 7 Apr 2010 12:05 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 7 Apr 2010 12:21 "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 7 Apr 2010 12:23 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 7 Apr 2010 13:59 "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
|
Pages: 1 Prev: Why beep for new email should be the windows default sound. Next: Black Screen at Boot-up |