gpt4 book ai didi

linux - 时间命令的问题

转载 作者:太空宇宙 更新时间:2023-11-04 04:53:05 25 4
gpt4 key购买 nike

当我运行多个后台作业时,我需要获取这组作业的运行时。我成功地使用了以下示例:

$ sleep 10 &
$ time wait
real 0m9.74s
user 0m0.00s
sys 0m0.00s

但是,如果我尝试将输出格式化为秒,则会收到以下错误:

$ time -f %e wait
time: cannot run wait: No such file or directory
0.00

这似乎只发生在 shell 内置函数中。有解决方法吗?

最佳答案

这里的问题有两个。

  • 我们不知道您使用的是内置 bash(假设您使用的是 centos 默认 shell)还是二进制 time 命令。
  • 无论哪种情况,wait 都是 bash 内置的

处理这个问题的方法:

/usr/bin/time -f %e bash -c wait
TIMEFORMAT="%pR" time bash -c wait

关于linux - 时间命令的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53522391/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com