标签: python .bash-profile
有没有办法使用python读取.bash_profile? 我需要得到一个变量的值,比如:
export JAVA_HOME=/usr/java
答案 0 :(得分:3)
如果要查找特定环境变量的值,则无需解析.bash_profile。只需登记os.environ。
os.environ
import os os.environ['JAVA_HOME']