config.sh
いくつかの変数がエクスポートされるbash スクリプトがあり、Python スクリプトでそれらの変数が必要です。
config.sh
export VAR="YES"
config.sh
私のアプローチは、Python スクリプトからソースを取得し、os
それを取得することです。
import os
if os.system("source ./config.sh") != 0:
print("Failed to execute the script")
else:
x = os.getenv('VAR')
どういうわけか、x の値はNone
env 変数が見つからないためです。何かアドバイスはありますか? ありがとう
Python バージョン 2.7.5