首页 > 代码库 > Linux之time命令

Linux之time命令

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命令