Join Two Text Files Together From A Command Prompt
July 13th, 2007
No third party utilities required.
Merge two file names ( may.csv and may1.csv ) into a new file called may2.csv, use the following from a command window:
copy/b may.csv +may1.csv may2.csv <Enter>
