View Single Post
  #5  
Old July 23rd 03, 10:58 AM
boka_do
external usenet poster
 
Posts: n/a
Default Merging MPG Files


"Steven Gray" wrote in message
...
"Eclipsme" wrote in
:

I don't remember an /s switch. How about
COPY /B FILE1.MPG + FILE2.MPG + FILE3.MPG FINAL.MPG ? Don't forget the
spaces on either side of the + signs.


Sorry, the correct switch is /B for Binary.

COPY FILE1.MPG + FILE2.MPG + FILE3.MPG FINAL.MPG /B


I could be wrong, but I think you need to put the /B where I put it. At
the end, it acts only on the file immediately preceding it. At the
beginning, it acts on everything following until it hits a /A.

--
Steve Gray


use copy /? to find the syntax for the copy command.