Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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.

share|improve this question

3 Answers

up vote 15 down vote accepted

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:

$ cat sshtest.py
import paramiko
import getpass

pw = getpass.getpass()

client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.WarningPolicy())
client.connect('127.0.0.1', password=pw)

while True:
    cmd = raw_input("Command to run: ")
    if cmd == "":
        break
    chan = client.get_transport().open_session()
    print "running '%s'" % cmd
    chan.exec_command(cmd)
    print "exit status: %s" % chan.recv_exit_status()

client.close()

$ python sshtest.py
Password: 
Command to run: true
running 'true'
exit status: 0
Command to run: false
running 'false'
exit status: 1
Command to run: 
$
share|improve this answer
Really appreciate for your answer!! I've use it in my project. Thank you very much. So far I can use paramiko instead of wrapping system command ssh in programming with python. – Beyonder Aug 25 '10 at 10:11
It's only something I put together by looking at the source of SSHClient, so it might not be optimal. BTW: if this does what you want, you might want to "accept" my answer. – JanC Aug 25 '10 at 15:58

Much easier example that doesn't involve invoking the channel class directly:

import paramiko

client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect('blahblah.com')

stdin, stdout, stderr = client.exec_command("uptime")
print stdout.channel.recv_exit_status()    # status is 0

stdin, stdout, stderr = client.exec_command("oauwhduawhd")
print stdout.channel.recv_exit_status()    # status is 127
share|improve this answer

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.

command | echo $? should work fine on Bash.

client = paramiko.SSHClient()
stdin, stdout, stderr = client.exec_command(command + '| echo $?')
share|improve this answer
1  
Thanks, but I think command + '; echo $?' may be better :) but I wonder how perl ssh library does it? use Net::SSH::Perl; ( $cmdout, $cmderr, $cmdexit ) = $ssh->cmd($command) – Beyonder Aug 25 '10 at 2:57
It seems that I was wrong. Sorry. – leoluk Aug 25 '10 at 14:21
leoluk, -1 for you because JanC has better (and right) answer. – Jeffrey Jose Dec 29 '10 at 8:38
1  
I disagree. I'm running into an error where the remote server won't return exit codes, no matter what I do, for an scp push. So echo-ing the exit code is actually the best solution. – decoy Sep 22 '11 at 17:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.