1.

Solve : COPY File?

Answer»

i would like to copy a.txt to b.txt and then CREATE c.txt
i try this "copy a.txt+b.txt .\c.txt"
however, i would like the content of b.txt are PLACED on the NEW line under a.txt

If the content of a.txt is "ABC" and b's content is "DEF"
i want c.txt is: abc
def

Many thanksMaybe something like....

Quote

echo. >> a.txt
copy a.txt+b.txt .\c.txt

This (hopefully) adds an extra line to file a.txt, some it should show in c.txt.


Discussion

No Comment Found