I need to create a temp file. Here's my straightforward code:
my $fh = File::Temp->new();
$fh->autoflush(1);
foreach my $cmd (@_) {
print "$cmd\n";
print $fh "$cmd\n";
}
system "dir $fh";
When I run it, I get this:
C:>brocade.pl
supportsave -n -h 10.250.17.140 -d /incoming/50798070 -l ftp
exit
Volume in drive C has no label.
Volume Serial Number is 32B6-C79A
Directory of C:\DOCUME~1\dentos\LOCALS~1\Temp
11/30/2012 05:16 PM 0 vfmhcyNzQN
1 File(s) 0 bytes
0 Dir(s) 783,720,448 bytes free
Why is my file showing up with zero bytes? I've tried using flush at the end of the loop, and sleeping 10 seconds for the OS to catch up, but it keeps acting the same. Did I miss something obvious in the docs?
Many thanks for any assistance.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|