From: Gavin Kistner Date: 2005-07-13T10:03:36+09:00 Subject: Re: dos %x{..} and my nUUbness On Jul 12, 2005, at 6:44 PM, John Hager wrote: > puts %x{ c:/zone/jboss-4.0.1sp1/bin/run.bat -c node1 } > > It works when I hard-code the path and args as in the sample above. > > The path and path-args are hard-coded, because I can't figure out > how to > pass in a variable and still get the server to start. String interpolation works in many magical places. path = "c:/zone/jboss-4.0.1sp1/bin/" puts %x{ #{path}run.bat -c node1 }