--- Chris Wall <[EMAIL PROTECTED]> wrote:
> I would like to append one or more files to an existing file.
> <exec> with cat doesn't seem to work.
> The output attribute overwrites the existing file, and <exec> doesn't
> like ">>".

Since you're running 'cat', I'll assume you have a shell, so try:
   <target name="docat">
     <exec executable="sh">
       <arg line='-c "cat foo1 foo2 foo3 >> allfoo"'/>
     </exec>
   </target>

Diane

=====
([EMAIL PROTECTED])



__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

Reply via email to