problem with split

2006-01-02 Thread John Joseph Bachir
it seems that on os x, split can only make files as big as 600 megs or so. here is the command i am using: split -b4700m myFile.tar.gz myFile.tar.gz_ ; Which should be about DVD sized chunks. But the files come out a little over 600 megs each. thanks john

Re: problem with split

2006-01-02 Thread Paul Eggert
John Joseph Bachir [EMAIL PROTECTED] writes: split -b4700m myFile.tar.gz myFile.tar.gz_ ; Which should be about DVD sized chunks. But the files come out a little over 600 megs each. Perhaps you're running an old version of split? split --version should tell you. If it's before version

Re: problem with split

2006-01-02 Thread John Joseph Bachir
On 1/2/06, Paul Eggert [EMAIL PROTECTED] wrote: Perhaps you're running an old version of split? split --version should tell you. If it's before version 5.0.1 you need to upgrade, to fix that bug. The current version is 5.93. ftp://ftp.gnu.org/gnu/coreutils/coreutils-5.93.tar.gz $ split

Re: problem with split

2006-01-02 Thread Dr. David Alan Gilbert
* John Joseph Bachir ([EMAIL PROTECTED]) wrote: it seems that on os x, split can only make files as big as 600 megs or so. here is the command i am using: split -b4700m myFile.tar.gz myFile.tar.gz_ ; Which should be about DVD sized chunks. But the files come out a little over 600 megs