20181207tee管道

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20181207tee管道相关的知识,希望对你有一定的参考价值。

tee 管道

技术分享图片
[[email protected] ~]# ip addr |grep ‘inet ‘ |tee ip.txt |awk -F"/" ‘{print $1}‘ |awk ‘{print $2}‘
127.0.0.1
128.172.16.60.1
[email protected] ~]# cat ip.txt
inet 127.0.0.1/8 scope host lo
net 172.16.60.1/24 brd 172.16.60.255 scope global eth0


[[email protected] ~]# ip addr |grep ‘inet ‘ |tee -a ip.txt |awk -F"/" ‘{print $1}‘ |awk ‘{print $2}‘ -a是追加的意思
127.0.0.1
172.16.60.1


[[email protected] ~]# date >date.txt
[[email protected] ~]# date |tee date.txt

[email protected] ~]# top -d 1 -b -n 1 > top.txt
[[email protected] ~]# top -d 1 -b -n 1 |tee top.txt

以上是关于20181207tee管道的主要内容,如果未能解决你的问题,请参考以下文章

管道命令输出到 tee 但也保存命令的退出代码 [重复]

管理输入输出 管道 tee

将管道添加到 tee-d 文件的简单方法

如果我将输出通过管道传输到 tee,则无法“继续”

Linux CentOS 7 shell中的特殊字符及与管道相关的命令(cut,sort,wc,uniq,tee,tr,split)

Linux学习笔记之管道重定向与正则表达式