forked from docs/doc-exports
Reviewed-by: Eotvos, Oliver <oliver.eotvos@t-systems.com> Co-authored-by: Chen, Junjie <chenjunjie@huawei.com> Co-committed-by: Chen, Junjie <chenjunjie@huawei.com>
753 B
753 B
What Should I Do If the os.system("command &") Execution Logs Are Not Collected?
Do not use os.system("command &"). The background command output will not be collected. To obtain the command output, use subprocess.Popen instead.
Parent topic: General FAQs