7.Shell本章同步视频:https://edu.51cto.com/sd/e4874

7.6.4 双向重导向: tee

1.语法

[dmtsai@study ~]$ tee [-a] file

选项与参数:

-a  :以累加 (append) 的方式,将数据加入 file 当中!

Linux-tee_tee

2.用法

[root@localhost tmp]# cat sort1

1

3

5

2

4

[root@localhost tmp]# cat sort1|tee sort.tee

1      #输出到屏幕

3      #同时也输出到sort.tee

5

2

4

[root@localhost tmp]# cat sort.tee

1     

5

2

4

本章同步视频:https://edu.51cto.com/sd/e4874