tee
命令在Linux中用于从标准输入读取数据,并将其写入到标准输出和一个或多个文件中。tee
命令通常与其他命令一起通过管道使用。
tee
命令在所有主流的Linux发行版中都可以使用,包括但不限于Ubuntu, Debian, Fedora, CentOS等。
[linux@bashcommandnotfound.cn ~]$ tee --version
tee
命令的基本语法如下:
tee [OPTIONS] [FILE]
以下是tee
命令的一些常用选项12:
选项 | 说明 |
---|---|
-a, --append | 不覆盖文件,而是将输出追加到给定的文件中 |
-i, --ignore-interrupts | 忽略中断信号 |
下面是一些tee
命令的使用实例:
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee file.txt
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee file1.txt file2.txt file3.txt
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee -a file.txt
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee -i file.txt
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee file.txt >/dev/null
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee file1.txt | cat -n
首先使用echo
命令生成了一些输出,然后使用tee
命令将这些输出写入到file1.txt
文件中。然后,我们使用管道操作符|
将tee
命令的输出传递给cat -n
命令,cat -n
命令会将其输入的每一行前面加上行号。
[linux@bashcommandnotfound.cn ~]$ command 2>&1 | tee file.txt
使用2>&1
将错误输出重定向到标准输出,然后使用tee
命令将输出写入到file.txt
文件中。
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee file1.txt file2.txt file3.txt
使用echo
命令生成了一些输出,然后使用tee
命令将这些输出写入到file1.txt
,file2.txt
和file3.txt
三个文件中。
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee -a file.txt
使用echo
命令生成了一些输出,然后使用tee -a
命令将这些输出追加到file.txt
文件的末尾。
[linux@bashcommandnotfound.cn ~]$ echo "example output" | tee -i file.txt
使用echo
命令生成了一些输出,然后使用tee -i
命令将这些输出写入到file.txt
文件中。如果在执行过程中收到中断信号,tee -i
命令会忽略它,而不是终止执行。
tee
命令会覆盖指定的文件。如果你想将输出追加到文件中,可以使用-a
选项。tee
命令在执行期间优雅地退出,可以使用-i
选项来忽略中断。tee
命令时遇到了bash: tee: command not found
错误,你可能需要安装tee
命令。在大多数Linux发行版中,tee
命令通常会预安装,所以你不太可能遇到这个问题。更多详细内容可以参考:
linux入门学习教程 - Linux入门自学网
Linux下tee命令教程:如何同时显示和保存程序输出