Re: Spawning a java call in a new command shell

2005-05-20 Thread Ninju Bohra
This is the helper target that we use:

Re: Spawning a java call in a new command shell

2005-05-19 Thread Alexey N. Solofnenko
Brain is working faster than fingers I meant that you will to need to add "pause" at the end of your command for the window to remain opened. - Alexey. Alexey N. Solofnenko wrote: On Windows you can execute 'cmd /c start "Window title" command', on Unix ('pwd' is usually executed on Unix) it

Re: Spawning a java call in a new command shell

2005-05-19 Thread Alexey N. Solofnenko
On Windows you can execute 'cmd /c start "Window title" command', on Unix ('pwd' is usually executed on Unix) it can be done by executing "xterm ...". You will also pause at the end, so the window is not closed. - Alexey. Brian Kuhn wrote: I think this is more of a windows than an ant question;

Re: Spawning a java call in a new command shell

2005-05-19 Thread Brian Kuhn
I think this is more of a windows than an ant question; Does anyone know if it's possible to create a new window when spawning a cmd command? For instance, I'd like to have the following exec task create a new cmd window so I can see the results. This is an example: Thanks, Brian