Python執行作業系統命令並取得返回值和退出碼,支援有互信的遠端執行

wpgy發表於2020-03-03

def exec_command(shell_cmd, hostname=None):
    if hostname:
        p = Popen('/usr/bin/ssh -Tq '+hostname, shell=True, stdout=PIPE, stdin=PIPE)
        p.stdin.write(str.encode(shell_cmd))
        p.stdin.flush()
    else:
        p = Popen(shell_cmd, shell=True, stdout=PIPE, stdin=PIPE)
    
    stdout, stderr = p.communicate()
    return stdout, stderr, p.poll()

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31560527/viewspace-2678384/,如需轉載,請註明出處,否則將追究法律責任。

相關文章