Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 UNIX/LINUX 中,是否有一种简单的方法来跟踪命令所用的时间?
是的,使用time <command>,例如
time <command>
time ls
咨询man time更多选项。链接。
man time
采用
/usr/bin/time
而不是 bash 中内置的时间:它是更可配置的 AFAIK。
e.g. /usr/bin/time --format=' \n---- \nelapsed time is %e'ls
这是sleep一秒的样子,时间为time:
sleep
time
$ time sleep 1 real 0m1.001s user 0m0.000s sys 0m0.000s