通过 Python 脚本处理 cmdline 的输出
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要输出、返回值(又名状态代码),还是两者都想要?
如果管道在 stdout 和/或 stderr 上发出的数据量不太大,则获得“上述所有内容”非常简单:
如果必须处理潜在的大量输出,则需要更多代码- 从相关管道来看,您似乎不应该遇到这个问题。
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":
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.
fe 标准输出你可以得到这样的:
f.e. stdout you can get like this: