comm命令
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-07-04
今天在论坛看到帖子,才知道有这么个命令,看来自己的知识太匮乏啊,为了让自己能记住一些,就查查资料,记录下来. 用法:comm [选项]... 文件1 文件2 逐行比较已排序的文件[文件1]和[文件2]. With no options, produce three-column output. Column one contains lines unique to FILE1, column two contains lines unique to FILE2, and column three contains lines common to both files. -1 suppress lines unique to FILE1 -2 suppress lines unique to FILE2 -3 suppress lines that appear in both files --help 显示此帮助信息并退出 --version 输出版本信息并退出 请向 <bug-coreutils@gnu.org> 报告错误. debian:/shell# 语 法:comm [-123][--help][--version][第1个文件][第2个文件] 补充说明:这项指令会一列列地比较两个已排序文件的差异,并将其结果显示出来,如果没有指定任何参数,则会把结果分成3行显示:第1行仅是在第1个 文件中出现过的列,第2行是仅在第2个文件中出现过的列,第3行则是在第1与第2个文件里都出现过的列.若给予的文件名称为"-",则comm指令会从标 准输入设备读取数据. 参 数: -1 不显示只在第1个文件里出现过的列. -2 不显示只在第2个文件里出现过的列. -3 不显示只在第1和第2个文件里出现过的列. --help 在线帮助. --version 显示版本信息 debian:/shell# cat a1 1 2 3 4 5 6 debian:/shell# cat a2 1 2 3 4 7 8 debian:/shell# comm a1 a2 1 2 3 4 5 6 7 8 debian:/shell# comm -1 a1 a2 1 2 3 4 7 8 debian:/shell# comm -2 a1 a2 1 2 3 4 5 6 debian:/shell# comm -3 a1 a2 5 6 7 8 debian:/shell# comm -13 a1 a2 7 8 debian:/shell# comm -23 a1 a2 5 6 debian:/shell# 希望我不会遗忘! debian:/shell# egrep -f a1 a2 1 2 3 4 debian:/shell# egrep -f a1 -v a2 7 8 debian:/shell# egrep -f a2 -v a1 5 6 debian:/shell# |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于comm命令的所有评论