如何在Linux中将time命令的输出重定向到文件?


202

关于在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来写文件,但是我的问题是关于没有那些选项的命令。

有什么建议 ?


3
bash脚本的可能重复写入文件中的执行时间,我远不能相信这是第一个这样的问题。
乔纳森·勒夫勒

Answers:


266

尝试

{ time sleep 1 ; } 2> time.txt

将“时间”的STDERR和您的命令组合到time.txt中

或使用

{ time sleep 1 2> sleep.stderr ; } 2> time.txt

将来自“ sleep”的STDERR放入文件“ sleep.stderr”,只有来自“ time”的STDERR进入“ time.txt”


2
谢谢,这正好回答了我的问题。如果我正确理解,可以从stderr获得time命令的结果?
2012年

7
是的,但是必须将其放在大括号中,否则重定向将成为time求值命令的一部分。
1

5
@Daniel您总是可以分别重定向内部命令输出(即{time sleep 1 2> sleepStdErr.txt;} 2> time.txt),这样只会得到时间输出。我不确定是否有办法独立获得它。
gms7777

10
如果您想将时间与grep之类的东西一起使用,请尝试读取stdout { time sleep 1; } 2>&1 | grep real。这会将stderr发送到stdout,然后grep可以读取它。
clayzermk1 2014年

9
不要忘记“;” 关闭'}'之前的字符,如果没有(我做了,并且...为什么不起作用:))
它将不起作用

38

time您要计时的命令和命令放在一组括号中。

例如,以下时间ls将的结果ls和计时的结果写入outfile

$ (time ls) > outfile 2>&1

或者,如果您想将命令的输出与捕获的输出分开time

$ (time ls) > ls_results 2> time_results

12
这里没有必要介绍一个子shell。
1

1
@ sampson-chen只能这样做是因为ls不会向stderr写任何内容,对吗?如果命令同时写入stdout和stderr,如何将“时间”的输出与要运行的命令的输出“分开”?
David Doria


14

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

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

要么

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

如您所见,该命令的错误进入了一个文件(因为stderr用于time)。

遗憾的是,您无法将其发送到另一个句柄(如3>&2),因为该句柄将不再存在{...}

就是说,如果您可以使用GNU时间,请执行@Tim Ludwinski所说的。

\time -o time.log command

8

由于“时间”命令的输出是错误输出,因此将其重定向为标准输出将更直观地进行进一步处理。

{ time sleep 1; } 2>&1 |  cat > time.txt

6

如果您使用的是GNU time而不是内置的bash,请尝试

time -o outfile command

(注意:GNU时间格式与内置的bash略有不同)。


1
这,谢谢。你也可以使用\time -o outfile command(带``)使用GNU而不是内置的。
马克

3
&>out time command >/dev/null

在你的情况下

&>out time sleep 1 >/dev/null

然后

cat out

3
不错的主意,但是导致shell不使用其内置命令。如果您没有time安装真正的二进制文件,out则将包含类似的内容bash: time: command not found
2014年

同样,GNU时间的格式与内置的bash不同,从而导致自动解析的问题。
2015年

3

我最终使用:

/usr/bin/time -ao output_file.txt -f "Operation took: %E" echo lol
  • 凡附加“ a”
  • 其中“ o”后跟要附加到的文件名
  • 其中“ f”是具有类似于printf语法的格式
  • 其中“%E”产生0:00:00;小时:分钟:秒
  • 我必须调用/ usr / bin / time,因为bash“时间”正在践踏它,并且没有相同的选项
  • 我只是想将输出输出到文件中,与OP不同

2
#!/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。


0

如果您不想触摸原始进程的stdout和stderr,则可以将stderr重定向到文件描述符3并返回:

$ { time { perl -le "print 'foo'; warn 'bar';" 2>&3; }; } 3>&2 2> time.out
foo
bar at -e line 1.
$ cat time.out

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

您可以将其用于包装器(例如,用于cronjobs)以监视运行时:

#!/bin/bash

echo "[$(date)]" "$@" >> /my/runtime.log

{ time { "$@" 2>&3; }; } 3>&2 2>> /my/runtime.log

0

如果您正在使用csh,则可以使用:

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

例如:

/usr/bin/time --output=outtime.txt -p csh -c 'cat file'
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.