Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: Suppress/Reactivate STDERR

by nobull (Friar)
on Dec 16, 2006 at 16:31 UTC ( [id://590216]=note: print w/replies, xml ) Need Help??


in reply to Re: Suppress/Reactivate STDERR
in thread Suppress/Reactivate STDERR

STDERR is not necessarily the same thing as file descriptor 3
s/3/2/

In recent Perl there's no need to use package variables for file handles to achieve this.

open my $olderr, '>&', \*STDERR or die $!; #... open STDERR, '>&', $olderr or die $!;

Replies are listed 'Best First'.
Re^3: Suppress/Reactivate STDERR
by ikegami (Patriarch) on Dec 16, 2006 at 18:07 UTC

    Re: 2 vs 3 -- Thanks, typo!

    Re: lexical file handles -- True. I just went along with the code that was already there. Lexicals can be used for file handles since Perl 5.6.0.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-25 04:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found