>How do i read on from the second line of a text file? 

Just read in the first line and ignore it

open FILE, "file.txt" or die "Could not open file.txt: $!\n";

my $first_line = <FILE>;

# now FILE is at the second line.
while( <FILE> ) {
  # do your processing
}

Tanton


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to