码迷,mamicode.com
首页 > 系统相关 > 详细

Linux之time命令

时间:2017-07-04 01:04:54      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:com   microsoft   bsp   nfs   mil   font   说明   sof   div   

Linux中的time命令常常用来计算某个程序的运行耗时(real),用户态cpu耗时(user),系统态cpu耗时(sys)。

格式:time [-p] command [arguments...]

time命令最常用的使用方式就是在其后直接跟上命令和参数,例如:

1 d-tao@ubuntu:/home/share$ time ls -l
2 total 8
3 drwxrwxrwx 2 root root 4096 Jul  3 00:53 nfs
4 drwxrwxrwx 2 root root 4096 Jul  3 00:03 tftp
5 
6 real    0m0.072s
7 user    0m0.000s
8 sys    0m0.000s

real表示程序运行耗时时间

user表示程序运行在用户态的耗时时间

sys表示程序运行在内核态的耗时时间

 

参数说明:

-p表示缺省时间单位,只打印时间数值,单位为妙。例如:

1 d-tao@ubuntu:/home/share$ time -p ls -l
2 total 8
3 drwxrwxrwx 2 root root 4096 Jul  3 00:53 nfs
4 drwxrwxrwx 2 root root 4096 Jul  3 00:03 tftp
5 real 0.08
6 user 0.00
7 sys 0.00

 

 

 

 

Linux之time命令

标签:com   microsoft   bsp   nfs   mil   font   说明   sof   div   

原文地址:http://www.cnblogs.com/tao-shao/p/7113481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!