-2

如何使用管道写入文件并显示到屏幕tee

这个命令实际上是这样做的,问题是它写入一个新文件并tail -f给我一个错误“截断文件”。

ls -al | tee file.txt
4

1 回答 1

0

-atee 的选项是您正在寻找的

 -a, --append
              append to the given FILEs, do not overwrite

所以你的行是:

ls -al | tee -a file.txt
于 2013-06-02T19:50:46.613 回答