in reply to Re: Re: Scratching my head...
in thread Scratching my head...
Well, if the file is not getting created, and nothing shows up on the die, and you have the parens correct (grin) then I would suggest:
The first two depend on the rest of your code. The last can be checked with a quick insert of:
right before the open and see if it catches anything. Throw an error in on purpose to see if the temp file gets the error.my $tmperror = "/tmp/temp.error"; open(STDERR, ">$tmperror") or die "Ironic: Cannot write errors to $tmperror: $!\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Scratching my head...
by spudzeppelin (Pilgrim) on May 01, 2001 at 02:18 UTC | |
by spudzeppelin (Pilgrim) on May 01, 2001 at 20:34 UTC |