tee 将信息同时输出到屏幕和文件

发布时间: 更新时间: 总字数:199 阅读时间:1m 作者: IP上海 分享 网址

如果你在linux下希望将程序或命令运行的信息,在输入到文件的同时,也能够显示在屏幕上,tee命令是个不错的选择。

help

tee --help
Usage: tee [OPTION]... [FILE]...
Copy standard input to each FILE, and also to standard output.

  -a, --append              append to the given FILEs, do not overwrite
  -i, --ignore-interrupts   ignore interrupt signals
      --help     display this help and exit
      --version  output version information and exit

If a FILE is -, copy again to standard output.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
For complete documentation, run: info coreutils 'tee invocation'

实例

ls -l | tee -a file.txt | less

说明:

  • ls -l 的输出重定向到 teetee -a 用于将内容存入file.txt文件,-a 表示使用追加模式
  • 管道符号将内容输出到less命令
Home Archives Categories Tags Statistics
本文总阅读量 次 本站总访问量 次 本站总访客数