Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: (OT) place on linux box to safely create tons of temp junk???

by idsfa (Vicar)
on Apr 02, 2006 at 23:59 UTC ( [id://540824]=note: print w/replies, xml ) Need Help??


in reply to (OT) place on linux box to safely create tons of temp junk???

Sick Unix Trick #347 ... ghost files.

# Open the file, creating it open $fh, '+>', 'foo.txt'; # Immediately unlink the file ... it will remain # until you close the filehandle, then disappear unlink 'foo.txt'; # Put something in it to test print $fh "Foo\n"; # Rewind to the start of the temp file seek $fh, 0, 0; # Read it back in and see what you have $in = <$fh>; print "Read: $in\n"; # You don't even *have* to remember to close it, # but it is a good habit ... close $fh;

Updated: Note that unlike File::Temp, this trick will clean up after itself no matter what happens to the process. It does not depend upon DESTROY being invoked.


The intelligent reader will judge for himself. Without examining the facts fully and fairly, there is no way of knowing whether vox populi is really vox dei, or merely vox asinorum. — Cyrus H. Gordon

Log In?
Username:
Password:

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

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

    No recent polls found