Brian Ruff <[EMAIL PROTECTED]> wrote:

> I want to create script files and want to get path like structures
> into these files.  Is there a standard Ant way to output path like
> structures into files?  I am currently building these files with the
> Echo task.

Depends on how you need them.  If you need a colon or semicolon
delimited list of entries, you can assign the PATH value to a property
and use that

<path id="my.path">
  ...
</path>
<property name="my.path.prop" refid="my.path" />
<echo message="${my.path.prop}" />

Stefan

Reply via email to