in reply to Re: Cannot skip first lines in array
in thread Cannot skip first lines in array

foreach (@rebasefile){ next for (0..9); # of course, this has overhead of its own next if(/^\s*$/); ... }
That doesn't skip the first 10 elements, it just calls an empty loop 10 times for each element.

Dave.