in reply to Skipping the first 4 lines of a file:: Is there a better way?

Something like your first, but in a for loop:

for ( 1..4 ) { <IN> }

But really what I would do:

<IN> for ( 1..4 );

    -Bryan