How to redirect output of child processes
I have a main process, in the main process, it calls Runtime.getRuntime().exec("child_process"); to start a child process.
My question is how I could redirect the output of thechild process to the one of the main process (stdout)? I think there should be an easy way to do it but google it doesn't give me any results.

