Linux tee命令的功能是从标准输入读取,再写入标准输出和文件,其使用语法是“tee [OPTION]… [FILE]…”,其中参数“-a –%ignore_a_1%end”表示追加到文件,参数“-i –ignore-interrupts”表示忽略中断信号,参数“-p”表示诊断写入非管道的错误等。

本教程操作环境:linux5.9.8系统、Dell G3电脑。
linux 命令:tee 详解
tee 的功能是从标准输入读取,再写入标准输出和文件。
用法:tee [OPTION]… [FILE]…
-a, –append 追加到文件
-i, –ignore-interrupts 忽略中断信号
-p 诊断写入非管道的错误
–output-error[=MODE] 设置输出错误的方式,MODE 的选项在下边
–help 帮助文档
–version 版本信息
MODE:
warn 写入遇到错误时诊断
warn-nopipe 写入非管道遇到错误时诊断
exit 写入遇到错误时退出
exit-nopipe 写入非管道遇到错误时退出
如果没有指定 –output-error,tee 会在写入管道发生错误时立即退出,写入非管道时诊断。
使用示例:
默认功能和追加功能:
[root@server dir]# echo 'This is a sentence.' | tee outputThis is a sentence.[root@server dir]# cat outputThis is a sentence.[root@server dir]# echo 'This is another sentence.' | tee -a outputThis is another sentence.[root@server dir]# cat outputThis is a sentence.This is another sentence.[root@server dir]# echo 'This is a unique sentence.' | tee outputThis is a unique sentence.[root@server dir]# cat outputThis is a unique sentence.
同时写入两个文件:
[root@server dir]# tee a bthey have the same contentthey have the same content^C[root@server dir]# cat athey have the same content[root@server dir]# cat bthey have the same content
相关推荐:《Linux视频教程》
以上就是Linux tee命令详解的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/133638.html
微信扫一扫
支付宝扫一扫