Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^4: move down 2 lines in file?

by johngg (Canon)
on Jul 11, 2008 at 22:13 UTC ( [id://697105]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $linesToSkip = 2;
    while ( <FILE> )
    ...
        # Do something here with the lines of interest.
        ...
    }
    
  2. or download this
    my $linesToSkip = 2;
    my $discard = <FILE> for 1 .. $linesToSkip;
    ...
        # Do something here with the lines of interest.
        ...
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://697105]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found