Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: Reopen file when contents changed?

by blazar (Canon)
on Jun 07, 2005 at 14:05 UTC ( [id://464308]=note: print w/replies, xml ) Need Help??


in reply to Re: Reopen file when contents changed?
in thread Reopen file when contents changed?

sub first_line_from_file { my $fn = shift; open my $file, "<", $fn or die "unable to open file $fn"; <$file> }
To return the first line I'd say
scalar <$file>;
(The semicolon is cosmetic. But I consider it good style)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://464308]
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: (3)
As of 2024-04-19 21:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found