将输出数据压缩到文件

时间:2016-03-04 17:24:17

标签: c bash append output

我编译了一个名为a.out的C文件,我使用time ./a.out

运行

这给了我这个输出:

Values in data mining increases by 30 in 100 seconds

real    5m3.898s
user    4m3.889s
sys     3m0.008s

我制作了一个脚本来实现自动化:

#!/bin/bash

time /home/full.sh >> /home/data.txt

但是在我的data.txt文件中,我只看到了这个(而不是时间数据):

Values in data mining increases by 30 in 100 seconds

1 个答案:

答案 0 :(得分:0)

获取时间和脚本输出,您可以使用此

 { time script; } &> outputfile

请注意&符号