----- Original Message -----
From: "M.A.Dunphy" <[EMAIL PROTECTED]>
To: "Ant-User (E-mail)" <[EMAIL PROTECTED]>
Sent: Tuesday, February 27, 2001 5:56 PM
Subject: Echo many lines to a file
> Hi there
>
> I'm using ant 1.2 on NT and trying to write multiple lines to a file. The
> first echo creates the file and then each subsequent echo appends to the
> file. Unfortunately the file is created with just 1 line?
It should work if you use something like
<echo file="myfile.txt">There are
multiple lines in
this file
</echo>
Nico