如何通过子进程模块执行bash命令time而不是/usr/bin/time?
我正在尝试创建一个小脚本来为我做一些基准测试。我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
shell=True
传递给subprocess.Popen()
Pass
shell=True
tosubprocess.Popen()
我知道这有点晚了,但是获得时间程序标准化输出的一种方法是使用标志 -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.