将python变量传递给linux shell

时间:2013-10-24 07:32:38

标签: python shell heredoc

我在bash脚本中的heredoc中运行python代码段。我想将一个字符串从python变量传递给shell。也许设置一个shell变量。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

variable=$(python - <<EOS
...
EOS
)

无论python脚本写入stdout的是什么都将存储在变量中。