kripa0 has asked for the wisdom of the Perl Monks concerning the following question:
I need to process a 3GB text file, and create a 3GB output file. I use 5.005_02 on Solaris 5.7. I also tried out 5.6.0.
|| % unlimit || % perl -ne1 a.large.file || Can't open a.large.file: Value too large for defined data type. || % perl -e 'open FF, "a.large.file" or die; print 0 . <FF>;' || Died at -e line 1. || % || % perl -v | grep 5.6 || This is perl, v5.6.0 built for sun4-solaris || % perl -V | grep -i large || useperlio=undef d_sfio=undef uselargefiles=define || Compile-time options: USE_LARGE_FILES || %
I haven't dealt with largefiles before, and would appreciate any info on how to read from and write to them. Thanks.
peace,
--{kr.pA}
--
Thanks to the next, so is this one. This sentence is self-referential.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help: Writing to largefiles
by Snuggle (Friar) on Aug 28, 2002 at 16:58 UTC | |
|
Re: Help: Writing to largefiles
by Anonymous Monk on Aug 28, 2002 at 23:07 UTC | |
|
Re: Help: Writing to largefiles
by bunnyman (Hermit) on Apr 25, 2006 at 15:02 UTC | |
|
Re: Help: Writing to largefiles
by waswas-fng (Curate) on Aug 28, 2002 at 20:19 UTC |