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.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.