通过 Python 脚本处理 cmdline 的输出

发布于 2024-08-14 10:43:16 字数 257 浏览 5 评论 0原文

我正在尝试将 subprocess 模块与 Python 2.6 一起使用,以便运行命令并获取其输出。该命令通常是这样运行的:

/usr/local/sbin/kamctl fifo profile_get_size myprofile | awk -F ':: ' '{print $2}'

在我的脚本中使用 subprocess 模块来使用这些参数执行该命令并从该命令获取返回值的最佳方法是什么?我正在使用Python 2.6。

I'm trying to use the subprocess module with Python 2.6 in order to run a command and get its output. The command is typically ran like this:

/usr/local/sbin/kamctl fifo profile_get_size myprofile | awk -F ':: ' '{print $2}'

What's the best way to use the subprocess module in my script to execute that command with those arguments and get the return value from the command? I'm using Python 2.6.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小傻瓜 2024-08-21 10:43:16

您想要输出、返回值(又名状态代码),还是两者都想要?

如果管道在 stdout 和/或 stderr 上发出的数据量不太大,则获得“上述所有内容”非常简单:

import subprocess

s = """/usr/local/sbin/kamctl fifo profile_get_size myprofile | awk -F ':: ' '{print $2}'"""

p = subprocess.Popen(s, shell=True, stdout=subprocess.PIPE)

out, err = p.communicate()

print 'out: %r' % out
print 'err: %r' % err
print 'status: %r' % p.returncode

如果必须处理潜在的大量输出,则需要更多代码- 从相关管道来看,您似乎不应该遇到这个问题。

Do you want the output, the return value (AKA status code), or both?

If the amount of data emitted by the pipeline on stdout and/or stderr is not too large, it's pretty simple to get "all of the above":

import subprocess

s = """/usr/local/sbin/kamctl fifo profile_get_size myprofile | awk -F ':: ' '{print $2}'"""

p = subprocess.Popen(s, shell=True, stdout=subprocess.PIPE)

out, err = p.communicate()

print 'out: %r' % out
print 'err: %r' % err
print 'status: %r' % p.returncode

If you have to deal with potentially huge amounts of output, it takes a bit more code -- doesn't look like you should have that problem, judging from the pipeline in question.

笑叹一世浮沉 2024-08-21 10:43:16

fe 标准输出你可以得到这样的:

>>> import subprocess
>>> process = subprocess.Popen("echo 'test'", shell=True, stdout=subprocess.PIPE)
>>> process.wait()
0
>>> process.stdout.read()
'test\n'

f.e. stdout you can get like this:

>>> import subprocess
>>> process = subprocess.Popen("echo 'test'", shell=True, stdout=subprocess.PIPE)
>>> process.wait()
0
>>> process.stdout.read()
'test\n'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文