Passing Arg in Ant
问题 I am working on Ant Script with following code block: <target name="phplint"> <apply dir="${dir.publish.php}" executable="${tool.php.lint}" parallel="true" failonerror="false"> <fileset dir="${dir.publish.php}"> <include name="**/*.php"/> </fileset> <arg value="-l" /> <srcfile/> <mapper type="glob" from="*.php" to="*.html"/> </apply> </target> The command which i want to run is as below: php -l index-1.php > index-1.html How can i do it...! because above code is working. but i don't want <arg