:: Here is a way to combine files
:: the problem here is that you will get all the lines
:: from both files into the third file and the lines end
:: a carrage return, so you can not use this method
:: to build any single line out of 2 files
echo first line >> c:\firstline.txt
echo second line >> c:\secondline.txt
copy firstline.txt + secondline.txt bothlines.txt
type bothlines.txt
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.