From: Cameron Matheson Date: 2007-09-29T15:46:11+09:00 Subject: Re: [Q] how can I start a shell process and return immediately? Hello, On 9/28/07, Stephen Bannasch wrote: > I want to start a Java program from a Ruby program and have the Java > program run in another process and have control returned to my Ruby > program as soon as the Java process starts up successfully. > > When I try this from a Ruby program the program blocks until the Java > program is terminated. There may be another way, but the first thing that came to mind for me was just to launch it in another thread: Thread.new { `java -cp ` } Cameron