通过python从.bash_profile读取

时间:2014-06-13 12:50:11

标签: python .bash-profile

有没有办法使用python读取.bash_profile? 我需要得到一个变量的值,比如:

export JAVA_HOME=/usr/java

1 个答案:

答案 0 :(得分:3)

如果要查找特定环境变量的值,则无需解析.bash_profile。只需登记os.environ

import os
os.environ['JAVA_HOME']