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.
|
|
|
SSHClient is a simple wrapper class around the more lower-level functionality in Paramiko. The API documentation lists a recv_exit_status() method on the Channel class. A very simple demonstration script:
|
|||||
|
|
Much easier example that doesn't involve invoking the channel class directly:
|
|||
|
|
|
Paramiko can't see more than you would see in a normal SSH session, so you see no exit codes by default. Solution: you have to change your command to make it return the exit code.
|
|||||||||||||
|