On Thu, 07 Nov 2002, GreatOne <[EMAIL PROTECTED]> wrote:

> what is the ant code equivalent to the following?
> 
>     for %i in (*.html) do tidy -im %i

<apply executable="tidy" parallel="false">
  <arg value="-im"/>
  <srcfile/>

  <fileset dir="." includes="*.html"/>
</apply>

Stefan

--
To unsubscribe, e-mail:   <mailto:ant-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:ant-user-help@;jakarta.apache.org>

Reply via email to