devnul has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use File::Temp q/tempfile/; for(my $i=0;$i<50;$i++) { my $tmp = new File::Temp('DIR' => '/tmp', 'UNLINK' => 1); sleep(1); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: File::Temp.. What am I missing?
by chromatic (Archbishop) on Sep 29, 2008 at 03:47 UTC | |
|
Re: File::Temp.. What am I missing?
by graff (Chancellor) on Sep 29, 2008 at 03:38 UTC | |
|
Re: File::Temp.. What am I missing?
by ikegami (Patriarch) on Sep 29, 2008 at 03:57 UTC |