Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

•Re: close STDOUT and system equal strange?

by merlyn (Sage)
on Feb 21, 2004 at 23:22 UTC ( [id://330862]=note: print w/replies, xml ) Need Help??


in reply to close STDOUT and system equal strange?

You're trying to pull a fast one on the kernel, and you lost. "standard output" is file descriptor 1. When you open a new file, it goes to the lowest unopened file descriptor. Normally, 0, 1, and 2 are all busy being standard input/output/error, but by closing STDOUT, you left room for another file to be fd 1. Hence, you lose. If you don't want that behavior, don't do that.

If you want to ensure that the child's standard output goes nowhere, open STDOUT onto /dev/null instead.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on •Re: close STDOUT and system equal strange?

Replies are listed 'Best First'.
(jptxs) Re: close STDOUT and system equal strange?
by jptxs (Curate) on Feb 22, 2004 at 01:10 UTC

    For the record, I wasn't trying =]

    I was happy to see it in the file in the larger program where I saw this happen b/c I had been planning on redirecting it there anyway. I suppose I could leave it this way, but I probably will not. It seems like a "bad way to do it".

    thanks for the enlightenment, merlyn.

    We speak the way we breathe. --Fugazi
File::Spec->devnull();
by Anonymous Monk on Feb 22, 2004 at 08:54 UTC
    or File::Spec->devnull();

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (2)
As of 2024-04-20 03:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found