Hi,

I need to execute a command with a large, not known in advance,
number of files, each listed as separate argument.  I have been
unable to figure out how to do this with Ant.

Roughly speaking, I want sth. like

        <exec executable="cat">
          <fileset>
            <include name="*.java"/>
          </fileset>
        </exec>

except that I don't know how to convert the fileset into a set
of <arg>s.

        <path id="foo">
          <fileset dir="...">
            <include name="*.java"/>
          </fileset>
        </path>
        <exec executable="cat">
          <arg pathref="foo"/>
        </exec>

gives the files combined together in one argument...

Paul

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to