Re: generate list in increments of 10's

2006-05-04 Thread Mike Blezien
John, - Original Message - From: "John W. Krahn" <[EMAIL PROTECTED]> To: "Perl Beginners" Sent: Wednesday, May 03, 2006 10:58 PM Subject: Re: generate list in increments of 10's Mike Blezien wrote: Hello, Hello, is there a simple way to generate a list of numbers from 0 - 1000

Re: Multiline regex on big file [was: 'Tie::StdScalar' - perl tells me it can't find it]

2006-05-04 Thread D. Bolliger
tom arnall am Mittwoch, 3. Mai 2006 22.10: [big snip of history] > I should have made clear my basic purpose in trying to use file-tied > scalars. I wanted to put a very large file (.5GB) into a scalar in a way > that has the system keeping most of the data on disk and putting in > physical memor

Re: Getting a dir list (Why does this happen)

2006-05-04 Thread John W. Krahn
Roman Hanousek wrote: > #Start test.pl use warnings; > use strict; > > # test.pl is saved in c:/work/temp > my $testDir = "c:/work/temp"; > >opendir(DIR, $testDir ); You should *always* verify that the directory was opened successfully. opendir DIR, $testDir or die "Cannot open directory