time [ -p ] Command [ Argument ... ]
time 命令以秒为单位将一条命令执行期间所用的时间、系统时间和 time 命令的执行时间打印在标准错误中。
注:休眠时间不能算入系统时间,也不能算入用户时间。
time 命令还内置于 C shell(csh)和 Korn shell(ksh),但具有不同的格式。要在 csh 与 ksh shell 中运行 time 命令,请输入:
/usr/bin/time
-p | 将定时输出写到标准错误。秒数被表达为基数字符后至少跟一位的浮点数。
此标志的标准格式如下: "real %f\nuser %f\nsys %f\n", <real seconds>, <user seconds>, <system seconds> |
如果使用 command 参数,time 命令的退出状态就是所指定命令的退出状态。否则,time 命令会用以下值之一退出:
1-125 | 表示 time 命令中发生错误。 |
126 | 表示由 Command 参数指定的命令已找到,但不能被调用。 |
127 | 表示由 Command 参数指定的命令找不到。 |
/usr/bin/time -p a.out
此命令运行程序 a.out,并以由 -p 标志指定的格式将实际时间、用户时间和系统时间写入标准错误;例如:
实际时间 10.5 用户时间 0.3 系统时间 3.6
/usr/bin/time a.out 2> a.time
/usr/bin/time | 指定 time 命令的路径。 |
timex 命令。
《AIX 5L V5.2 系统管理指南:操作系统与设备》中的『系统记帐』。
AIX 5L Version 5.2 System Management Concepts: Operating System and Devices 中的 Accounting Commands。
AIX 5L Version 5.2 System Management Concepts: Operating System and Devices 中的 Accounting Overview。
《AIX 5L V5.2 性能管理指南》中的『使用 time 命令来测量 CPU 的使用』。