In ruby18 I sometimes did the following to get a subprocess with full control:

stdin, @stdin= IO.pipe
@stdout, stdout= IO.pipe
@stderr, stderr= IO.pipe
@pid= fork do
    @stdin.close
    STDIN.close
    stdin.dup
    @stdout.close
    STDOUT.close
    stdout.dup
    @stderr.close
    STDERR.close
    stderr.dup
    exec(...)
end

This does not work in ruby19. The close method for STDIN, STDOUT, STDERR does not close the underlying filedescriptor in ruby19. How do I do this in ruby19.

link|improve this question

You may want to try the stdlib instead of doing all that pipekeeping by hand: ruby-doc.org/stdlib-1.9.3/libdoc/open3/rdoc/Open3.html ruby-doc.org/stdlib-1.8.7/libdoc/open3/rdoc/Open3.html – dbenhur Mar 11 at 9:15
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.