测量脚本执行时间


27

在Bash shell中,是否有一种简单的方法可以监视运行脚本所花费的时间并输出所花费的时间?

Answers:


36

是。

 time script

script用于监视时间的脚本在哪里。

例如,time find ~将输出如下内容(取决于主目录的大小):

real    0m49.139s
user    0m0.663s
sys     0m4.129s

@Jason:不客气!我很高兴这有所帮助!
Wuffers 2011年

2

我制作了一个tic / toc计时器对实用程序,称为tticttoc在这里可用

使用示例:

$ ttic && sleep 0.4 && ttoc
0.405

为了避免与现有的tic / toc配对冲突,可以在此处指定ID foo

$ ttic foo && sleep 0.5 && ttoc foo

或分配一个随机ID,如下所示:

$ id=$(ttic --unique) && sleep 0.5 && ttoc $id
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.