--- Ed Moon <[EMAIL PROTECTED]> wrote:

> Here's how to use cat to put a file back together
> again:
>       cat part1 part2 part3 part4 > wholefile
> 
> Or
>       cat part1 > wholefile
>       cat part2 >> wholefile
>       cat part3 >> wholefile
>       cat part4 >> wholefile

or, when they are in order:

        cat part? > wholefile

 should also work.

In the context of Ant, <concat> with <fileset> should
easily handle the reassembly.  Since cat and split are
historically related, I would be +1 to adding a
contributed Java split implementation to Ant core, if
anyone cares to submit one.

-Matt



        
                
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to