Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的 shell 脚本 (emailsend.sh) 中调用 python 工具 (buttons.py)。棘手的部分是这个 python 工具是以交互模式编写的。这就是我手动触发工具button.py的方式:
./button.py(将用户置于屏幕交互控制台中,在其上,我需要输入以下内容:)
./button.py
>>> tsr() >>> tl() >>> activate(355)
有没有办法将所有内容嵌入到我的 emailsend.sh 脚本中?
尝试这个:
./button.py << EOF tsr() tl() activate(355) EOF