tags:

views:

80

answers:

1

how can execute a command in phing on each file of a fileset target

for example:
<exec command="cat {$filepath}">
  <fileset dir=".">
    <include name="*.php">
  </fileset>
</exec>
A: 

You can use the foreach task with filesets, e.g.:

<?xml version="1.0" encoding="utf-8"?>
<project name="cat-fileset" basedir="." default="iterate">
    <target name="iterate">
        <foreach param="fname" absparam="abs-fname" target="cat">
            <fileset dir="${project.basedir}">
                <include name="*.php" />
            </fileset>
        </foreach>
    </target>    
    <target name="cat">
        <exec command="cat ${abs-fname}" 
            escape="false"
            checkreturn="true"
            passthru="true" />
    </target>
</project>

Note that this feature was implemented in version 2.4.0 of Phing

nuqqsa
this is my phing version:Phing version 2.3.3I got this error:Error initializing nested element <fileset> [wrapped: phing.tasks.system.ForeachTask doesn't support the 'fileset' creator/adder.]]
Arsenio Siani
Sorry for that, it's not 2.3.1 but 2.4.0: http://phing.info/trac/ticket/252 Latest stable version is 2.4.1, you may want to upgrade.
nuqqsa