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>