I am using bc 4.4 to merge java files, I would like it to ignore overlapping lines like
file1:
Static String var1="this is example";
file2:
Static String var1=
"this is example";
Not sure this can be done, another alternative is to match the format of one file to another, but I could not figure it out.
Appreciate the assistance