关于Linux上的计时程序有一个小问题:time命令允许 衡量一个程序的执行时间:

[ed@lbox200 ~]$ time sleep 1

real    0m1.004s
user    0m0.000s
sys     0m0.004s

这很好。但是如果我试图将输出重定向到一个文件,它会失败。

[ed@lbox200 ~]$ time sleep 1 > time.txt

real    0m1.004s
user    0m0.001s
sys     0m0.004s

[ed@lbox200 ~]$ cat time.txt 
[ed@lbox200 ~]$ 

我知道还有其他时间的实现有-o选项来写文件,但是 我的问题是关于没有这些选项的命令。

有什么建议吗?


当前回答

如果您关心命令的错误输出,您可以在使用内置的time命令时将它们像这样分开。

{ time your_command 2> command.err ; } 2> time.log

or

{ time your_command 2>1 ; } 2> time.log

正如您所看到的,命令的错误会被保存到一个文件中(因为stderr用于表示时间)。

不幸的是,你不能将它发送到另一个句柄(如3>&2),因为它在{…}之外不再存在了。

也就是说,如果你可以使用GNU时间,就按照tim Ludwinski说的去做。

\time -o time.log command

其他回答

如果你只需要shell变量中的时间,那么这是可行的:

var=`{ time <command> ; } 2>&1 1>/dev/null`

如果你正在使用csh,你可以使用:

/usr/bin/time --output=outfile -p $SHELL  -c 'your command'

例如:

/usr/bin/time --output=outtime.txt -p csh -c 'cat file'

简单。GNU时间实用程序对此有一个选项。

但是你必须确保你没有使用shell内置的time命令,至少bash内置没有提供这个选项!这就是为什么你需要给出时间效用的完整路径:

/usr/bin/time -o time.txt sleep 1
#!/bin/bash

set -e

_onexit() {
    [[ $TMPD ]] && rm -rf "$TMPD"
}

TMPD="$(mktemp -d)"
trap _onexit EXIT

_time_2() {
    "$@" 2>&3
}

_time_1() {
    time _time_2 "$@"
}

_time() {
    declare time_label="$1"
    shift
    exec 3>&2
    _time_1 "$@" 2>"$TMPD/timing.$time_label"
    echo "time[$time_label]"
    cat "$TMPD/timing.$time_label"
}

_time a _do_something
_time b _do_another_thing
_time c _finish_up

这样做的好处是不生成子壳,并且最终的管道有它的stderr恢复为真正的stderr。

如果您关心命令的错误输出,您可以在使用内置的time命令时将它们像这样分开。

{ time your_command 2> command.err ; } 2> time.log

or

{ time your_command 2>1 ; } 2> time.log

正如您所看到的,命令的错误会被保存到一个文件中(因为stderr用于表示时间)。

不幸的是,你不能将它发送到另一个句柄(如3>&2),因为它在{…}之外不再存在了。

也就是说,如果你可以使用GNU时间,就按照tim Ludwinski说的去做。

\time -o time.log command