I need to execute several shell scripts with python, some scripts would export environment parameters, so I need to execute them in the same process, otherwise, other scripts can't see the new environment parameters
in one word, I want to let the shell script change the environment of the python process so I should not use subprocess, any idea how to realize it?