I want to create a Batch command file to merge text file with extension ".mf" However, each file contains date in the first line, which I donot want in the final output file, Please advice how do I get rid of the date line from each file while mergingin into one big txt file.
I have used the following command for merging the txt files for a batch file.
copy *.mf big.one
ren big.one filename.mf
Example:
2013218;
a
b
c
d
-
2013218;
u
v
w
x
y
z
The output must be like below:
2013218;
a
b
c
d
u
v
w
x
y
z
The sorting does not matter.