0

我正在使用以下代码块处理 Ant 脚本:

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

我要运行的命令如下:

php -l index-1.php > index-1.html

我该怎么做...!因为上面的代码正在工作。但我不想<arg value="-l"/>

我想通过它<arg value="-l"/> <arg value="> *.html"/>

4

1 回答 1

1

设置output属性以指定应将命令输出重定向到的文件。这是蚂蚁手册。

于 2013-05-09T12:01:01.027 回答