Perl clearification
if (($index % $steps) == 0) { print $_; $recCounter++; } if($recCounter > $maxRecords){ break; } $index++; } I won't give me any records. Can you please identify the difference in behavior ? Sincerely, Anees Haider -- To unsubscribe
Re: Perl clearification
On Aug 7, 5:06 pm, [EMAIL PROTECTED] (Rob Dixon) wrote: > Anees wrote: > > Dear friends: > > > I am a perl begineer. I have created an script which prints each 100th > > record from the file as shown below: > > > #!/usr/bin/perl > > $maxRecord