Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: How can I grab the last 2 lines of a file?

by fishmonger (Chaplain)
on Jul 26, 2014 at 23:09 UTC ( [id://1095185]=note: print w/replies, xml ) Need Help??


in reply to How can I grab the last 2 lines of a file?

Normally, I'd suggest a pure Perl solution, such as the one AppleFritter suggested but in this case I'll suggest a mixed perl/shell solution that needs only 1 line of code.

my ($id, $name) = split {$/}, `tail -2 /path/to/file`;

Replies are listed 'Best First'.
Re^2: How can I grab the last 2 lines of a file?
by muba (Priest) on Jul 26, 2014 at 23:19 UTC

    Clever solution ++

    ... if you're on a *NIX system, or on a system that otherwise has the tail executable installed somewhere in its PATH.

      Hi Monks!
      I came across this post and it seems very helpful to a snippet of code i am trying to put together...Actually, I am interested in exactly the same thing as requested here, with the exception of removing these N (e.g. 2) lines from the file...It this possible?
        > removing these N (e.g. 2) lines from the file...It this possible?

        This it! See truncate.

        But you need to know the start of the lines to be dropped (see tell ), so the same techniques apply like described in this thread.

        edit

        Of course much easier if the length of the lines to be skipped are already known.

        Cheers Rolf

        (addicted to the Perl Programming Language and ☆☆☆☆ :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-25 17:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found