The build.xml file to concatenate files using ant. This can be executed using the command ‘ant “ConcatAll”‘
<?xml version="1.0" encoding="UTF-8"?>
<project name = "MyProj" basedir = "." >
<target name = "ConcatAll" >
<concat destfile = "final.txt" fixlastline = "yes" >
<filelist dir = "."
files = "first_file.txt
second_file.txt
third_file.txt"/>
</concat>
</target>
</project>
Hi Binny
I’am trying to concatenate two files as you said above…
file1: abcd
efgh
file2: ijkl
mnop
Running the target for the first time
abcd
efgh
ijkl
mnop
Running the target again output is as below
abcd
efgh
ijkl
mnop
ijkl
mnop
Instead I require the output in the below format
abce
efgh
ijkl
mnop
I mean duplicate entries shouldn’t be there…
can you please tell me the logic