命令行:
time myprocess
输出其结果:
OUTPUT FROM MY PROCESS
real 0m1.954s
user 0m0.086s
sys 0m0.052s
但如果我这么做
time myprocess > outputfile.txt
我的 outputFiel.txt 将仅包含我的流程的输出。而不是时间结果。
我如何将所有内容(包括“时间”的输出)输出到我的文件中?
命令行:
time myprocess
输出其结果:
OUTPUT FROM MY PROCESS
real 0m1.954s
user 0m0.086s
sys 0m0.052s
但如果我这么做
time myprocess > outputfile.txt
我的 outputFiel.txt 将仅包含我的流程的输出。而不是时间结果。
我如何将所有内容(包括“时间”的输出)输出到我的文件中?