如何更改 time 命令的输出:
real 0m12.304s
user 0m10.187s
sys 0m1.699s
到:
12.30s
编辑:使用 bash (OSX)
答案1
把这个放进去.bashrc
:export TIMEFORMAT=%Rs
然后source ~/.bashrc
。
跑去type time
看看就知道了time is a shell keyword
。然后,运行man bash
(因为 bash 是您的 shell)并搜索“time”。