如何使用 Paramiko 获取 SSH 返回码?
client = paramiko.SSHClient()
stdin, stdout, stderr = client.exec_command(command)
有什么办法可以获取命令返回码吗?
很难解析所有 stdout/stderr 并知道命令是否成功完成。
client = paramiko.SSHClient()
stdin, stdout, stderr = client.exec_command(command)
Is there any way to get the command return code?
It's hard to parse all stdout/stderr and know whether the command finished successfully or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
一个更简单的示例,不涉及直接调用“较低级别”通道类(即,不使用
client.get_transport().open_session()
命令):A much easier example that doesn't involve invoking the "lower level" channel class directly (i.e. - NOT using the
client.get_transport().open_session()
command):SSHClient 是一个简单的包装类,围绕 Paramiko 中较低级别的功能。 API 文档列出了
Channel 上的
recv_exit_status()
方法类。
一个非常简单的演示脚本:
其执行示例:
SSHClient is a simple wrapper class around the more lower-level functionality in Paramiko. The API documentation lists a
recv_exit_status()
method on theChannel
class.A very simple demonstration script:
Example of its execution:
感谢JanC,我对示例添加了一些修改并在Python3中进行了测试,这对我来说非常有用。
Thanks for JanC, I added some modification for the example and tested in Python3, it really useful for me.
就我而言,输出缓冲是问题所在。由于缓冲,应用程序的输出不会以非阻塞方式出现。您可以在这里找到有关如何在不缓冲的情况下打印输出的答案:禁用输出缓冲。简而言之,只需使用 -u 选项运行 python,如下所示:
> python -u script.py
In my case, output buffering was the problem. Because of buffering, the outputs from the application doesn't come out non-blocking way. You can find the answer about how to print output without buffering in here: Disable output buffering. For short, just run python with -u option like this:
> python -u script.py