Linux tee命令:将标准输入复制到每个指定文件
Linux tee命令 功能描述
使用tee命令可以将标准输入复制到每个指定文件,并显示到标准输出。
Linux tee命令 语法
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