tee.1
来自「Unix操作系统minix 2.0源码」· 1 代码 · 共 60 行
1
60 行
TEE(1) Minix Programmer's Manual TEE(1)
NAME
tee - divert stdin to a file
SYNOPSIS
tee [-ai] file ...
OPTIONS
-a Append to the files, rather than overwriting
-i Ignore interrupts
EXAMPLES
cat file1 file2 | tee x
# Save and display two files
pr file | tee x | lpr
# Save the output of pr on x
DESCRIPTION
Tee copies stdin to standard output. It also makes copies on all the
files listed as arguments.
SEE ALSO
cat(1).
1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?