Re: [Perl-unix-users] perl 5.6.1 for solaris 8

2003-08-18 Thread Michael Meltzer
No, because you will be directed to Sun Freeware site and there I could find only perl 5.8.0. Michael Anthony Ettinger wrote: > Michael, > > Would one of these work? > > http://www.cpan.org/ports/#solaris > > --- Michael Meltzer <[EMAIL PROTECTED]> wrote: > > I am looking for a binary distrib

Re: [Perl-unix-users] Thoritical limits on perl processes

2003-08-18 Thread Edward Moon
How large are your text files? Perl data structures are often 5x to 10+x the size of the file on disk. If you're processing a 2GB or 3GB file, you may hit swap when processing the file in memory. You may want to look into tieing the file to a variable and processing the file line by line. On

Re: [Perl-unix-users] perl 5.6.1 for solaris 8

2003-08-18 Thread Alexander Bel...
Hi Michael! Look this http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl --- Best regards AlexBel - Original Message - DATE: Mon, 18 Aug 2003 18:14:10 From: Michael Meltzer <[EMAIL PROTECTED]> To: perl-unix-users <[EMAIL PROTECTED]> Cc: >I am looking

Re: [Perl-unix-users] perl 5.6.1 for solaris 8

2003-08-18 Thread Anthony Ettinger
Michael, Would one of these work? http://www.cpan.org/ports/#solaris --- Michael Meltzer <[EMAIL PROTECTED]> wrote: > I am looking for a binary distribution of perl 5.6.1 > for solaris 8. > > Does someone know where to find ? > > Michael > > -- > + Michael Meltzer > ---+--

Re: [Perl-unix-users] perl 5.6.1 for solaris 8

2003-08-18 Thread Michael Meltzer
Thank you very much Rob. Do you know if there are differences to Perl 5.6.1 from CPAN ? Michael "Hanson, Rob" wrote: > ActiveState has one. > > http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl > > Rob > > -Original Message- > From: Michael Meltzer [mailto:[EMAIL

RE: [Perl-unix-users] perl 5.6.1 for solaris 8

2003-08-18 Thread Hanson, Rob
ActiveState has one. http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl Rob -Original Message- From: Michael Meltzer [mailto:[EMAIL PROTECTED] Sent: Monday, August 18, 2003 12:14 PM To: perl-unix-users Subject: [Perl-unix-users] perl 5.6.1 for solaris 8 I am look

[Perl-unix-users] perl 5.6.1 for solaris 8

2003-08-18 Thread Michael Meltzer
I am looking for a binary distribution of perl 5.6.1 for solaris 8. Does someone know where to find ? Michael -- + Michael Meltzer ---+-+ | SICAD GEOMATICS | EMail : [EMAIL PROTECTED] | | Lilienthal-Str. 7| Phone : +49-89-45026-10

[Perl-unix-users] Thoritical limits on perl processes

2003-08-18 Thread Subrahmanyam Vadlamani
Hi: Suppose I want to read in large text files and want to do something with them. Are there any theoritical limits on the process size of a perl script? My scripts are going to be running on an AIX 5.1 machine with quite a bit of RAM (about 8 GB RAM). I will be using perl 5.6.0. thanks for th