以下の例を参照してください。
<concat destfile="dest-file">
<fileset dir="dir1" />
<!-- how to append the output of the executable below without creating a temporary file for that output? -->
<apply executable="command1">...</apply>
</concat>
以下の例を参照してください。
<concat destfile="dest-file">
<fileset dir="dir1" />
<!-- how to append the output of the executable below without creating a temporary file for that output? -->
<apply executable="command1">...</apply>
</concat>
apply
およびexec
タスクは をサポートしているため、次redirector
のようなことができます。
<apply executable="command1" >
<redirector append="true" output="file.log" />
</apply>