in reply to Calling exec on exec
$ENV{JAVA_STUFF} = "things"; exec(@cmds, @args, @etc);
Although, I must be missing something, because it really aught to work like you expect. The only thing I can think is that you're showing us exec(@cmds), but you're really calling exec("@cmds"); (I could easily be missing something else.)
-Paul
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Calling exec on exec
by shamu (Acolyte) on Sep 19, 2008 at 20:02 UTC | |
by ikegami (Patriarch) on Sep 19, 2008 at 20:11 UTC |