5

以下の例を参照してください。

<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>
4

1 に答える 1

4

applyおよびexecタスクは をサポートしているため、次redirectorようなことができます。

<apply executable="command1" >
    <redirector append="true" output="file.log" />
</apply>
于 2012-05-21T20:00:45.207 に答える