From: Sean O'Halpin Date: 2009-03-17T07:50:26+09:00 Subject: Re: Ceding commandline control to child process On Mon, Mar 16, 2009 at 10:12 PM, Juan Zanos wrote: > Say I want to launch a child process and allow the user to interact with it > until it returns.  Is there an easy way to do this?   It seems to work just > using the back ticks except that the child process' output is never > displayed. > > Juan Try system("command") instead of `command` (I'm presuming you don't need to capture stdout or stderr).