首页 > 代码库 > 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命令
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。