3

我是 Python 新手,尝试过谷歌搜索,但没有帮助。
我需要在管道中调用此类命令(从 mailq 获取最旧的待处理邮件):

mailq |grep "^[A-F0-9]" |sort -k5n -k6n |head -n 1

该命令在 shell 中工作。

在 Python 中,我写了以下内容:

 p = subprocess.Popen( 'mailq |grep \"^[A-F0-9]\" |sort -k5n -k6n |head -n 1', shell=True,
                         stdin=subprocess.PIPE,
                         stdout=subprocess.PIPE,
                         stderr=subprocess.STDOUT)
 response = p.communicate()[0]

但我得到这样的输出:

sort: write failed: 标准输出: Broken pipe\nsort: write error\n

想知道是什么导致了这样的错误?

4

4 回答 4

4

我认为这应该有效:

p = subprocess.Popen( 'mailq |grep \"^[A-F0-9]\" |sort -k5n -k6n |head -n 1', shell=True,
                         stdin=subprocess.PIPE,
                         stdout=subprocess.PIPE,
                         stderr=subprocess.PIPE)
response = p.stdout.readlines(-1)[0]
print response

打印响应的第一行

于 2016-12-20T09:12:03.410 回答
2

与其让 shell 负责将您的命令拆分为多个进程并通过管道传输它们,不如自己做。请参阅此处如何将一个子流程流通过管道传输到另一个子流程。

这样您就可以查找每个步骤的输出(例如,通过将 stdout 路由到您的 stdout,只是为了调试)并确定您的整个工作流程是否正常。

它看起来有点像这样:

mail_process = subprocess.Popen('mailq', stdin=PIPE, stdout=PIPE, stderr=STDOUT)
grep_process = subprocess.Popen(['grep', '\"^[A-F0-9]"'], stdin=mail_process.stdout, stdout=PIPE, stderr=STDOUT]
...
head_process = subprocess.Popen(["head", ...], ...)
head_process.communicate()[0]
于 2016-12-20T09:05:25.310 回答
1

我建议你使用这里写的子进程:http: //kendriu.com/how-to-use-pipes-in-python-subprocesspopen-objects

ls = subprocess.Popen('ls /etc'.split(), stdout=subprocess.PIPE)
grep = subprocess.Popen('grep ntp'.split(), stdin=ls.stdout, stdout=subprocess.PIPE)
output = grep.communicate()[0]

这是使用管道的pythonic方式。

于 2016-12-20T09:05:47.173 回答
0

Python3

shell = subprocess.run(["./snmp.sh","10.117.11.55","1.3.6.1.4.1.43356.2.1.2.1.1.0"],check=True,capture_output=True)
print(shell)

#!/bin/bash
args=("$@")

snmpwalk -v 1 -c public ${args[0]} ${args[1]}
output = subprocess.check_output(["awk",'{print$4}'"],input=shell.stdout,capture_output=True)
print(output) 

我收到这样的错误

输出 = [Errno 2] 没有这样的文件或目录:“awk '{print $4}'”

我修复错误的地方只是在 sh 文件的末尾添加了一个管道。

#!/bin/bash
args=("$@")

snmpwalk -v 1 -c public ${args[0]} ${args[1]} | awk '{print $4}'

希望它可以帮助某人

于 2021-02-05T18:14:03.143 回答