如何通过子进程模块执行bash命令time而不是/usr/bin/time?

发布于 2024-11-03 07:42:10 字数 513 浏览 0 评论 0原文

我正在尝试创建一个小脚本来为我做一些基准测试。我正在使用 subprocess.Popen 来执行时间命令。代码示例:

import subprocess
import shlex

command = shlex.split("time thing_im_benchmarking")
p = subprocess.Popen(command)
p.wait()

我得到的输出是

2.58user 0.04system 0:02.83elapsed 92%CPU (0avgtext+0avgdata 11568maxresident)k 0 个输入 + 0 个输出 (0 主要 + 791 个次要) 页面错误 0 交换

我真正想要的是

real    0m3.048s
user    0m2.784s
sys 0m0.040s

如何让 Popen 执行内置的 bash 命令?

I'm trying to create a small script for doing some benchmarking for me. I'm using subprocess.Popen to execute the time command. A sample of the code:

import subprocess
import shlex

command = shlex.split("time thing_im_benchmarking")
p = subprocess.Popen(command)
p.wait()

The output I get is

2.58user 0.04system 0:02.83elapsed 92%CPU (0avgtext+0avgdata 11568maxresident)k
0inputs+0outputs (0major+791minor)pagefaults 0swaps

What I really wanted was

real    0m3.048s
user    0m2.784s
sys 0m0.040s

How do I get Popen to execute the built-in bash command?

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

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

发布评论

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

评论(2

被你宠の有点坏 2024-11-10 07:42:12

shell=True 传递给 subprocess.Popen()

Pass shell=True to subprocess.Popen()

葵雨 2024-11-10 07:42:12

我知道这有点晚了,但是获得时间程序标准化输出的一种方法是使用标志 -p。这将为您提供符合 POSIX 2 标准的时间输出。当我尝试使用自动收集时间的程序来评估我的时间时,这对我帮助很大。

I know that this is kind of late, but a way to get a standardized output for the time-program is by using the flag -p. This will get you a time output according to the POSIX 2 standard. This helped me a lot when I tried to evaluate my timings using a program automatically collecting them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文