Linux tee命令

Linux tee命令:将标准输入复制到每个指定文件

Linux tee命令 功能描述

使用tee命令可以将标准输入复制到每个指定文件,并显示到标准输出。

Linux tee命令 语法

tee [选项] [文件]

命令中各选项的含义如下表所示。

Linux tee命令 语法

Linux tee命令 示例

将标准输入复制到/root/file文件,并显示到标准输出

[root@rhel ~]# tee /root/file
abc                               //输入字符
abc
def                               //输入字符
def                               //在此按[Ctrl+d]组合键

内容追加到指定的/root/file文件

[root@rhel ~]# tee -a /root/file
ghi                               //输入字符
ghi                               //在此按[Ctrl+d]组合键

将cat的输出输入到标准输出和fff文件中

[root@rhel ~]# cat /root/install.log|tee fff

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程