I need to call some shell commands from perl. These commands take quite a long time to complete, so I would like to see their output, awaiting completion.
The system function does not give me any output until it is complete.
The exec function gives output; however, it exits the perl script from this point, which I did not want.
I am on Windows. Is there any way to do this?
source share