Linux 之 tee 命令

Linux的 tee 命令

Linux的tee命令可以将输出输出到终端的同时写入文件。

这个命令对于既想试试看到输出保存到文件稍后查看的操作十分有用。

官方定义为:

tee – read from standard input and write to standard output and files

语法

具体的使用方法为:  $ tee [OPTION]… [FILE]…

参数

  • -a, --append  追加到现有文件的后面,而非覆盖它.
  • -i, --ignore-interrupts  忽略中断信号。

一般使用

比如最简单的想查看一下当前有哪些文件并保存到一个日志,如下:$ lsa.txt b.txt c.txt d.txt e.txt$ ls | tee list.loga.txt b.txt c.txt d.txt e.txt$ cat list.loga.txt b.txt c.txt d.txt e.txt

可以看到tee在保证同时显示在终端上还输出到了文件 list.log中。

同时保存到多个文件

tee当然也是可以同时输出到多个文件的,比如:$ lsa.txt b.txt c.txt d.txt e.txt$ ls | tee list.log listB.loga.txt b.txt c.txt d.txt e.txt$ cat list.loga.txt b.txt c.txt d.txt e.txt$ cat listB.loga.txt b.txt c.txt d.txt e.txt

与自己对话

与自己对话如何呢,或者叫做复读机?

tee命令直接跟文件的话,会等待输入,并同步进行输出到终端和文件的操作。$ tee test.loghellohelloworldworld$ cat test.loghelloworld

声明:文中观点不代表本站立场。本文传送门:https://eyangzhen.com/92740.html

(0)
联系我们
联系我们
分享本页
返回顶部