tee命令的功能是用于读取标准输入的数据,将其内容转交到标准输出设备中,同时保存成文件。
语法格式:tee [参数] 文件
常用参数:
-a | 追加写入操作 |
-i | 忽略中断信号 |
— help | 查看帮助信息 |
— version | 显示版本信息 |
参考实例
将用户输入的数据同时写入到两个文件中:
[root@linuxcool ~]# tee file1 file2 linuxcool.com linuxcool.com ^C
执行某个指定的命令,并将其执行结果即输出到屏幕,又写入到文件中:
[root@linuxcool ~]# uptime | tee system.txt 16:13:43 up 1:38, 1 user, load average: 0.00, 0.00, 0.00