Re: [opensuse] A real problem: splitting files

2007-07-29 Thread Randall R Schulz
On Sunday 29 July 2007 12:46, James Knott wrote: > Alexey Eremenko wrote: > > Thanks all of you ! > > > >> cat x* > foo.iso > > > > This one is especially cool command :) so especially thanks ! > > There are a *LOT* of "cool" bash commands. Read any book on bash > scripts to find them. Other shel

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread James Knott
Alexey Eremenko wrote: > Thanks all of you ! > >> cat x* > foo.iso >> >> > > This one is especially cool command :) so especially thanks ! > > There are a *LOT* of "cool" bash commands. Read any book on bash scripts to find them. Other shells have similar capabilities, but bash seems t

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread James Knott
Alexey Eremenko wrote: > Hi all ! > > I came across a problem: splitting files. > > How to best approach this problem ? > > I have used "split" command: > Like that, to split 1 ISO file into many 1 MB files. > split -d -b $[1000*1000] --verbose ../visopsys-0.62.iso > > But I came across a problem,

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread Randall R Schulz
On Sunday 29 July 2007 12:01, Alexey Eremenko wrote: > Thanks all of you ! > > > cat x* > foo.iso > > This one is especially cool command :) so especially thanks ! Yes, very fancy... > -- > -Alexey Eremenko "Technologov" RRS -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread Dmitry
On Monday 30 July 2007 01:16, Alexey Eremenko wrote: >AE Hi all ! >AE >AE I came across a problem: splitting files. >AE >AE How to best approach this problem ? >AE >AE I have used "split" command: >AE Like that, to split 1 ISO file into many 1 MB files. >AE split -d -b $[1000*1000] --verbose ../vi

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread Alexey Eremenko
Thanks all of you ! > > cat x* > foo.iso > This one is especially cool command :) so especially thanks ! -- -Alexey Eremenko "Technologov" -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread Anders Johansson
On Sunday 29 July 2007 20:16:31 Alexey Eremenko wrote: > Hi all ! > > I came across a problem: splitting files. > > How to best approach this problem ? > > I have used "split" command: > Like that, to split 1 ISO file into many 1 MB files. > split -d -b $[1000*1000] --verbose ../visopsys-0.62.iso

Re: [opensuse] A real problem: splitting files

2007-07-29 Thread jpff
cat f1 f2 f3 f4 f5 f6 f7 f8 > bigfile ?? ==John ffitch -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[opensuse] A real problem: splitting files

2007-07-29 Thread Alexey Eremenko
Hi all ! I came across a problem: splitting files. How to best approach this problem ? I have used "split" command: Like that, to split 1 ISO file into many 1 MB files. split -d -b $[1000*1000] --verbose ../visopsys-0.62.iso But I came across a problem, how-to merge them back? I did something