美文网首页Linux
合并多个文件用到的paste和cat命令

合并多个文件用到的paste和cat命令

作者: 云养江停 | 来源:发表于2021-10-01 16:09 被阅读0次

    paste 命令用于合并文件的列。

    paste 指令会把每个文件以列对列的方式,一列列地加以合并。

    $ cat file                  #file文件的内容  
    xiongdan 200  
    lihaihui 233  
    lymlrl 231  
    $ cat testfile              #testfile文件的内容  
    liangyuanm  ss  
    $ cat testfile1             #testfile1文件的内容  
    huanggai 56  
    zhixi 73 
    

    当合并指令paste file testfile testfile1执行后,程序界面中将显示合并后的文件内容,如下所示:

    xiongdan 200  
    lihaihui 233  
    lymlrl 231  
    liangyuanm  ss  
    huanggai 56  
    zhixi 73  
    

    cat是按行合并

     more ts1   //查看文件ts1
    1
    2
    $ more ts2   //查看文件ts2
    cat
    paste
    $ cat ts1 ts2  //按行合并
    1
    2
    cat
    paste
    

    相关文章

      网友评论

        本文标题:合并多个文件用到的paste和cat命令

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