Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^2: File contents not updated properly

by fmerges (Chaplain)
on Dec 09, 2008 at 18:02 UTC ( [id://729229]=note: print w/replies, xml ) Need Help??


in reply to Re: File contents not updated properly
in thread File contents not updated properly

Hi,

First of all, don't assume that you could open the file, check for it. Then use 3 argument open, and don't use a typeglob.

open my $fh, '>', $filename or die "Can't open $filename: $!";

The solution provided will leave the default handler to be *FH, which is not desired, meaning all prints, etc will use *FH; alternatives:

# not so maintainable, but still used frequently select((select($fh), $|++)[0]); # better use IO::Handle; $fh->autoflush(1);

Check out the link about buffering provided...

Regards,

fmerges at irc.freenode.net

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-25 10:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found