作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个命令,基本上是一个 c
程序,当在远程机器上执行时。执行该命令后,它需要一些输入。就像:
./sum
Enter two value: 8 9
sum is 17
如何在 ssh.exec_command("./sum")
之后使用 paramiko
执行此操作?如何将输入 8 和 9 发送给它。
最佳答案
使用stdin.write
stdin, stdout, stderr = ssh.exec_command('./sum')
stdin.write('8 9\n')
stdin.flush()
关于python - 如何在 python 中使用 paramiko 将输入发送到命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34266605/
我是一名优秀的程序员,十分优秀!