[comp.sys.ibm.pc] 4DOS file concatenation problem

mee@ucscb.UCSC.EDU (Kevin Kahl) (03/30/90)

In article <5563@jarthur.Claremont.EDU> jmerrill@jarthur.Claremont.EDU (Confusion Reigns) writes:
>Is there an easy way to do the equivalent of
>
> cat file1 >> file2
>
> under DOS?

If your file is an ASCII file:

  type file1 >> file2

will do the trick.  If your file is a binary file:

  copy /b file2 file1 file2

ought to do it.

Kevin Kahl
mee@ucscb.ucsc.edu