我编译了一个名为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
答案 0 :(得分:0)
获取时间和脚本输出,您可以使用此
{ time script; } &> outputfile
请注意&
符号