Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Virtual memory issue with File::Find?

by oakbox (Chaplain)
on Jul 30, 2001 at 16:23 UTC ( [id://100840]=note: print w/replies, xml ) Need Help??


in reply to Virtual memory issue with File::Find?

Take this with a grain of salt (I'm merely a scribe):
Have you tried setting your script to autoflush?

Put this somewhere toward the top of your script and run it again:

$|=1;
Oakbox
"If what I'm saying doesn't make sense, that's because sense cannot be made, it's something that must be sensed"-J.S. Hall

Replies are listed 'Best First'.
Re: Re: Virtual memory issue with File::Find?
by Anonymous Monk on Jul 30, 2001 at 19:33 UTC
    That's not going to help. $| only works on the currently selected filehandle which in his case is the default of STDOUT and he's not printing anything to STDOUT so $| = 1 won't do any good by itself. select(OUT); $| = 1; select(STDOUT); would autoflush OUT.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 14:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found