Linux comm命令

Linux comm命令:逐行比较两个已排序的文件

Linux comm命令 功能描述

使用comm命令可以比较两个已排过序的文件,并将其结果显示出来。

Linux comm命令 语法

comm [选项] [文件1] [文件2]

命令中各选项的含义如表所示。

Linux comm命令 语法

Linux comm命令 示例

比较文件file1和file2的文件内容

[root@rhel ~]# cat file1
a
aa
[root@rhel ~]# cat file2
a
bb
//查看文件file1和file2的文件内容
[root@rhel ~]# comm file1 file2
              a
aa
      bb

比较文件file1和file2,只显示文件file1和file2中相同行的数据内容

[root@rhel ~]# comm -12 file1 file2
a
//file1和file2文件中相同行的数据内容是a

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程