I have a dragon script and I want to use it as the input of another program. I want to use pipelines, the syntax will be:
python_script.py | C_program
But I do not know how to redirect Python stdout to CStudin
< P> The redirection is done by the shell, as long as the python script writes stdout and C_program, it should work fine.
Comments
Post a Comment