In one of the configuration files for my project I need to append some text. I am looking for some options to do this using Ant.
I have found one option - to find someth
Another option would be to use a filterchain.
For example, the following will append file input2.txt
to input1.txt
and write the result to output.txt
. The line separators for the current operating system (from the java properties available in ant) are used in the output file. Before using this you would have to create output2.txt
on the fly I guess.