从环境变量中获取参数

时间:2012-12-19 15:12:09

标签: python environment-variables

我想从我的脚本中读取新的环境变量。我正试图通过ssh导出这个var。我试过了

test = "qwerty"
cmd = "export my_password=%s;python script.py" % test

通过ssh执行此命令。在脚本中:

if os.environ.has_key("my_password"): print "ok"
else: print "failed"

结果我“失败”了。我该如何设置这个env变量?

1 个答案:

答案 0 :(得分:3)

只需在命令之前添加它而不导出它:

cmd = "my_password=%s python script.py" % test