From: Robert Klemme Date: 2006-02-28T17:53:41+09:00 Subject: Re: how to run a ruby program from another one Navya Amerineni wrote: > Hi, > > How can we run a a ruby program from another ruby program. I am > working on one program where in i have to run another ruby program > from it. > I am stuck here. The easiest is to use fork with a block: 09:51:31 [~]: ruby -e 'fork { puts "#{$$}: child" }; puts "#{$$}: parent"' 1912: parent 2128: child Kind regards robert