Re: File cutting

2005-07-18 Thread Tshepang Lekhonkhobe
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 140 byte pieces (to fit on

Re: File cutting

2005-07-18 Thread Joseph Haig
--- 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 140 byte pieces (to fit onto floppy disks, for example): $ split --bytes=140 INPUT PREFIX

Re: File cutting

2005-07-18 Thread michael
On Mon, 2005-07-18 at 15:06 +0200, Tshepang Lekhonkhobe wrote: > Hello, > What utility can I use to cut a file in different pieces and then > assemble them back together? I guess 'cut', 'head' and 'tail' in a suitable pipeline may suffice -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a su

File cutting

2005-07-18 Thread Tshepang Lekhonkhobe
Hello, What utility can I use to cut a file in different pieces and then assemble them back together? malebo...