Suppress redirector input stream?

2008-01-31 Thread Jeffrey E Care
Is there a way to tell redirector to not pump stdin to a forked process? In the WAS build we have to fork quite a few times (either with or with ); these forked processes do not expect any input on their stdin, but I couldn't find a way to tell redirector to not pump Ant's stdin to the forked p

Re: Suppress redirector input stream?

2008-01-31 Thread Matt Benson
--- Jeffrey E Care <[EMAIL PROTECTED]> wrote: > Is there a way to tell redirector to not pump stdin > to a forked process? > Hi Jeff--I think you should be able to do: or, fancier: Would any of this help? -Matt > In the WAS build we have to fork quite a few times > (either w

Re: Suppress redirector input stream?

2008-01-31 Thread Jeffrey E Care
Matt Benson <[EMAIL PROTECTED]> wrote on 01/31/2008 11:58:26 AM: > Hi Jeff--I think you should be able to do: > > The empty string works & is cleaner than the hack I had come up with, so thanks for that! I'm still thinking that redirector should have an explicit flag that could be used to si