如何在shell脚本中运行交互式python脚本?

时间:2013-10-19 17:02:29

标签: python shell

我需要在我的shell脚本(emailsend.sh)中调用python工具(buttons.py)。棘手的部分是这个python工具是以交互模式编写的。这就是我手动触发工具button.py:

的方法

./button.py(将用户置于屏幕交互式控制台中,在其上,我需要键入以下内容:)

>>> tsr()
>>> tl()  
>>> activate(355)

有没有办法将所有内容嵌入到我的emailsend.sh脚本中?

1 个答案:

答案 0 :(得分:2)

试试这个:

./button.py << EOF
tsr()
tl()
activate(355)
EOF