子进程完成运行后如何获取其环境变量?
问题描述
我正在寻找一种方法来做到这一点,以便我可以将它传递给另一个子进程的环境.
I'm looking for a way to do this, so that I can pass it to the environment of another subprocess.
解决方案
你能不能在第一个子进程中打印出来,然后在 python 中处理那个字符串?
Can you print them out in the first subprocess and deal with that string in python?
相关文章