Linux shell tee 命令

返回上一级

Linux shell tee 命令用于读取标准输入的数据,并将其内容输出成文件。

tee 命令会从标准输入设备读取数据,将其内容输出到标准输出设备,同时保存成文件。

tee 命令语法格式

tee [-ai][--help][--version][文件...]

参数

-a , --append
附加到既有文件的后面,而非覆盖它
-i , --ignore-interrupts
忽略中断信号
--help
在线帮助
--version
显示版本信息

范例

使用 tee 命令将用户输入的数据同时保存到文件 demo10.txtdemo9.txt

[root@localhost ~]# tee demo9.txt demo10.txt         #在两个文件中复制内容

执行以上脚本将提示用户输入需要保存到文件的数据

root@localhost ~]# tee demo9.txt demo10.txt
Hello 简单教程        # 提示用户输入数据 
Hello 简单教程        # 输出数据,进行输出反馈 按组合键 CTRL+D 结束输入
[root@localhost ~]# cat demo9.txt
Hello 简单教程
[root@localhost ~]# cat demo10.txt
Hello 简单教程

返回上一级

Linux Shell 命令大全

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.