On 7/18/05, Joseph Haig <[EMAIL PROTECTED]> wrote: > --- Tshepang Lekhonkhobe <[EMAIL PROTECTED]> wrote: > > > Hello, > > What utility can I use to cut a file in different pieces and then > > assemble them back together? > > > > split and cat > > To cut a file into 1400000 byte pieces (to fit onto floppy disks, for > example): > > $ split --bytes=1400000 INPUT PREFIX > > This will take the file INPUT and split it into a collection of files > called PREFIXaa, PREFIXab, etc. > > To put them back together again: > > $ cat PREFIXaa PREFIXab ... > newfile > > Hope this helps, > > Joe Haig > > > > ___________________________________________________________ > Does your mail provider give you FREE antivirus protection? > Get Yahoo! Mail http://uk.mail.yahoo.com
thanks a lot