Linux - tee

Posted 平凡之路

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux - tee相关的知识,希望对你有一定的参考价值。

Summary

  • Linux tee命令用于读取标准输入的数据,并将其内容输出成文件。
  • tee指令会从标准输入设备读取数据,将其内容输出到标准输出设备,同时保存成文件。

Demo

# 将标准输出结果,输出到一个文件中
ls | tee a.txt
# 将标准输出结果,分别存放到两个文件中
ls | tee a.txt b.txt

以上是关于Linux - tee的主要内容,如果未能解决你的问题,请参考以下文章

linux tee

linux 的tee命令

linux 的tee命令

linux命令之tee

Linux - tee

Linux命令——tee