1
如何将tee附加到Bash中的文件?
这些是我在终端中键入的命令 echo -e "First Line" | tee ~/output.log echo -e "Second Line" | tee ~/output.log 当我查看output.log文件时,我仅看到“第二行”。我如何确保tee附加(而不是擦除文件)? 我希望能够在文件中看到此内容: First Line Second Line 我应该以其他方式处理吗? 谢谢!