如何在shell脚本中将time命令输出到文件?

时间:2016-09-10 16:15:05

标签: linux shell time append

这不会将time命令的输出附加到file.txt

echo $(time openssl genrsa -aes128 -out server.key 1024) &> file.txt

1 个答案:

答案 0 :(得分:0)

您可以使用以下内容:

 {time openssl genrsa -aes128 -out server.key 1024} 2>> file.txt