tags:

views:

14

answers:

1

Hi everyone,

can i call a jython file from another jython program and execute that .

Also i know os.system(cmd.exe)get the system prompt . is it possible that i can trigger cmd.exe and cmd.exe gets poped up into the screen. Thanks

+1  A: 

Try using "CMD /C JYTHON MYPROG.PY"

Fortyrunner
Sometimes it it easier to create `.bat` file and call it from other programs. In such `.bat` you can add `pause` at end of the file, redirect stdout/stderr etc.
Michał Niklas
Correct. Thats something I do all the time
Fortyrunner