码迷,mamicode.com
首页 > 系统相关 > 详细

mac 比较两个文件

时间:2018-08-25 23:28:22      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:文件   需要   区分   sage   用法   比较   test   想去   bsp   

比较两个文件,输出两个文件都有的行,可以使用comm命令,如下例:

------------------->$ cat 1s1.txt
line 0
line 1
line 1
line 2
line 3
line 4


------------------->$ cat 1s2.txt
line 1
line 3
line 3
line 6


------------------->$ comm 1s1.txt 1s2.txt
line 0
                 line 1
line 1
line 2
                 line 3
        line 3
line 4
        line 6

 

comm命令会输出三列,第一列为第一个文件单有的行,第二列为第二个文件单有的行,第三列为公有的行。另如果有重复行,并不算一行来区分。

看comm的用法:

------------------->$ comm -h
comm: illegal option -- h
usage: comm [-123i] file1 file2

可以选择输出那一列,比如输出第三列,需要使用-12,注意,不显示那一列,就把该列加到命令中去:

------------------->$ comm -3 1s1.txt 1s2.txt
line 0
line 1
line 2
       line 3
line 4
       line 6


------------------->$ comm -12 1s1.txt 1s2.txt
line 1
line 3

 

如果想去重可以使用命令:

sort test.txt | uniq

 

mac 比较两个文件

标签:文件   需要   区分   sage   用法   比较   test   想去   bsp   

原文地址:https://www.cnblogs.com/drizzlewithwind/p/9535774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!