From: gcgaim on 2 Oct 2007 07:03 I'm having trouble running a Java program from a TCL script. I know exec needs to args passed in, so I've tried everything I know to get this to work. I want to run: java -classpath c:\proj1\test.jar -log testlog -args test1 test2 What is the best way to run this and wait for it to finish? Thanks!
From: schlenk on 2 Oct 2007 07:11 gcg...(a)gmail.com wrote: > I'm having trouble running a Java program from a TCL script. I know > exec needs to args passed in, so I've tried everything I know to get > this to work. I want to run: > java -classpath c:\proj1\test.jar -log testlog -args test1 test2 > > What is the best way to run this and wait for it to finish? Thanks something like: exec [auto_execok java] {c:\proj1\test.jar} -log testlog -args test1 test2 Michael
|
Pages: 1 Prev: How to do 3d line plots Next: can't find package __teapot__ ??? |