美文网首页
Linux命令之tee - 重定向输出到多个文件

Linux命令之tee - 重定向输出到多个文件

作者: shuff1e | 来源:发表于2018-03-09 15:18 被阅读40次

    http://codingstandards.iteye.com/blog/833695

    示例一 tee命令与重定向的对比
    [root@web ~]# seq 5 >1.txt 
    [root@web ~]# cat 1.txt 
    1
    2
    3
    4
    5
    [root@web ~]# cat 1.txt >2.txt 
    [root@web ~]# cat 1.txt | tee 3.txt 
    1
    2
    3
    4
    5
    [root@web ~]# cat 2.txt 
    1
    2
    3
    4
    5
    [root@web ~]# cat 3.txt 
    1
    2
    3
    4
    5
    [root@web ~]# cat 1.txt >>2.txt 
    [root@web ~]# cat 1.txt | tee -a 3.txt 
    1
    2
    3
    4
    5
    [root@web ~]# cat 2.txt 
    1
    2
    3
    4
    5
    1
    2
    3
    4
    5
    [root@web ~]# cat 3.txt 
    1
    2
    3
    4
    5
    1
    2
    3
    4
    5
    [root@web ~]# 
    

    相关文章

      网友评论

          本文标题:Linux命令之tee - 重定向输出到多个文件

          本文链接:https://www.haomeiwen.com/subject/udopfftx.html