tee

tee在线教程

类似传统的tee命令, 用于读取标准输入的数据,并将其内容输出成文件。

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

  1. USAGE:
  2. tee [-a] [-h] [file]
  3. SUMMARY:
  4. tee command for pipes.
  5. EXAMPLES:
  6. sysprop | tee /path/to/logfile | grep java
  7. sysprop | tee -a /path/to/logfile | grep java
  8. WIKI:
  9. https://arthas.aliyun.com/doc/tee
  10. OPTIONS:
  11. -a, --append Append to file
  12. -h, --help this help
  13. <file> File path