命令提示符的秒表?

命令提示符的秒表?

是否有秒表,以便我可以测量 BASH shell 执行不同命令所花费的时间?

答案1

time [command]返回命令完成所需的时间。

steven@wind:~$ time du /storage -s
du: cannot read directory `/storage/lost+found': Permission denied
1548584024      /storage

real    0m4.046s
user    0m0.224s
sys     0m1.496s
steven@wind:~$ time sleep 5

real    0m5.003s
user    0m0.000s
sys     0m0.000s
steven@wind:~$

相关内容