首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

Linux比较文件命令comm

Linux比较文件命令comm

comm如此好用的命令居然一直不知道很落后
comm 可以比较出两个已排序文件的内容
NAME
comm – compare two sorted files line by line
SYNOPSIS
comm [OPTION]… FILE FILE
DESCRIPTION
Compare sorted files FILE and FILE line by line
With no options produce threecolumn output Column one contains lines unique to FILE column two contains lines unique to FILE and column three
contains lines common to both files
suppress lines unique to FILE
suppress lines unique to FILE
suppress lines that appear in both files
–help display this help and exit
–version
output version information and exit
ex:
存在txt不存在txt的内容
comm <(sort txt) <(sort txt)
存在txt不存在txt的内容
comm <(sort txt) <(sort txt)
存在txt也存在txt的内容
comm <(sort txt) <(sort txt)
什么也不显示:)
comm <(sort txt) <(sort txt)
返回列表