python子进程无法正常工作。它不替代变量输出

时间:2018-10-13 07:45:11

标签: python python-2.7 subprocess

我具有以下用于检查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

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

1 个答案:

答案 0 :(得分:2)

由于投诉涉及factor_sc[-5,-4] %>% chisq.test ,而不是ping -c 1 ,因此很明显ping -{} 1 {} 发生了。

由于投诉涉及.format(请注意末尾的空格),因此显然ping -c 1  second 参数是一个空字符串。

抱怨该命令失败的原因可能是.format期望到达目的地(因此所有stderr都抱怨使用)。