I have two scripts, a python script and a perl script.
How can I make the perl script run the python script and then runs itself?
|
Something like this should work:
If you need to capture the output of the Python script:
This also works similarly if you want to provide input for the subprocess. |
|||||||||||
|
|
The best way is to execute the python script at the system level using IPC::Open3. This will keep things safer and more readable in your code than using system(); You can easily execute system commands, read and write to them with IPC::Open3 like so:
This will create a forked process to run the python code. This means that should the python code fail, you can recover and continue with your program. |
|||||
|
|
It may be simpler to run both scripts from a shell script, and use pipes (assuming that you're in a Unix environment) if you need to pass the results from one program to the other |
|||
|
|
systemcall? Plus, your last sentence seems to have an error in it. The Python script does not appear in it. – Niklas B. Dec 28 '11 at 17:37