首页 > 解决方案 > python子进程不工作。它没有取代可变输出

问题描述

我有以下用于检查 ping 状态的功能

def pingOk(sHost):
    try:
        output = subprocess.check_output("ping -{} 1 {}".format('n' if platform.system().lower()=="windows" else 'c', sHost), shell=True)
    except Exception, e:
        traceback.print_exc()
        return False

    return True

我试图运行脚本

 pingOk(sHost)

我收到以下错误:

Usage: ping [-aAbBdDfhLnOqrRUvV64] [-c count] [-i interval] [-I interface]
            [-m mark] [-M pmtudisc_option] [-l preload] [-p pattern] [-Q tos]
            [-s packetsize] [-S sndbuf] [-t ttl] [-T timestamp_option]
            [-w deadline] [-W timeout] [hop1 ...] destination
Usage: ping -6 [-aAbBdDfhLnOqrRUvV] [-c count] [-i interval] [-I interface]
             [-l preload] [-m mark] [-M pmtudisc_option]
             [-N nodeinfo_option] [-p pattern] [-Q tclass] [-s packetsize]
             [-S sndbuf] [-t ttl] [-T timestamp_option] [-w deadline]
             [-W timeout] destination
Traceback (most recent call last):
  File "set_enviroment.py", line 54, in pingOk
    output = subprocess.check_output("ping -{} 1 {}".format('n' if platform.system().lower()=="windows" else 'c', sHost), shell=True)
  File "/usr/lib64/python2.7/subprocess.py", line 575, in check_output
    raise CalledProcessError(retcode, cmd, output=output)
CalledProcessError: Command 'ping -c 1 ' returned non-zero exit status 2

看起来它没有格式化输出。请有人帮助我做错了什么

标签: pythonpython-2.7subprocess

解决方案


由于投诉是关于ping -c 1 ,而不是ping -{} 1 {},很明显.format 确实发生了。

由于投诉是关于ping -c 1 (注意尾随空格),很明显第二个参数.format是一个空字符串。

命令失败的抱怨可能是因为ping期望一个目的地(因此所有标准错误都抱怨使用情况)。


推荐阅读