Linux之time命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux之time命令相关的知识,希望对你有一定的参考价值。

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

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

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

1 [email protected]:/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 [email protected]:/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命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux之time命令

Linux命令之sed-替换字符串

Linux 之 touch 命令

linux之touch命令修改文件的时间戳

Linux内核之进程和文件共享

Linux基础命令之关机,重启,注销