If I have a command line like this:
abc -c config.json| xyz -c test.json
How can I run it in Python file? I mean we will don't type "abc -c config.json| xyz -c test.json" in the terminal.
xyz and abc are applications that I have written.
So, May I have a help?