uniq

作者: Kokoronashi | 来源:发表于2019-01-04 10:53 被阅读0次

uniq 命令

命令简介

uniq命令可以用于过滤或者输出重复行

Usage: uniq [OPTION]... [INPUT [OUTPUT]]
Filter adjacent matching lines from INPUT (or standard input),
writing to OUTPUT (or standard output).

With no options, matching lines are merged to the first occurrence.

Mandatory arguments to long options are mandatory for short options too.
  -c, --count           prefix lines by the number of occurrences
    统计重复行数
    
  -d, --repeated        only print duplicate lines, one for each group
    只显示重复行,单行显示
    
  -D, --all-repeated[=METHOD]  print all duplicate lines
    只显示重复行,全部显示
                          groups can be delimited with an empty line
                          METHOD={none(default),prepend,separate}
  -f, --skip-fields=N   avoid comparing the first N fields
      --group[=METHOD]  show all items, separating groups with an empty line
                          METHOD={separate(default),prepend,append,both}
  -i, --ignore-case     ignore differences in case when comparing
  -s, --skip-chars=N    avoid comparing the first N characters
  -u, --unique          only print unique lines
  -z, --zero-terminated  end lines with 0 byte, not newline
  -w, --check-chars=N   compare no more than N characters in lines
      --help     display this help and exit
      --version  output version information and exit

A field is a run of blanks (usually spaces and/or TABs), then non-blank
characters.  Fields are skipped before chars.

Note: 'uniq' does not detect repeated lines unless they are adjacent.
You may want to sort the input first, or use 'sort -u' without 'uniq'.
Also, comparisons honor the rules specified by 'LC_COLLATE'.

相关文章

  • Linux uniq 命令

    Linux uniq 命令 uniq 命令 uniq 命令可以去除排序过的文件中的重复行,因此 uniq 经常和 ...

  • linux-grep | sort | uniq | wc |

    grep | sort | uniq | wc | less grep sort uniq wc less

  • Linux命令学习之:uniq命令

    Linux命令学习之:uniq命令 uniq命令可以去除排序过的文件中的重复行,因此uniq经常和sort合用。也...

  • uniq

    uniq 命令 用于报告或者忽略文件中的重复行, 一般与sort命令结合使用 用法 uniq (选项) (参数...

  • uniq

    uniq 用于报告或者忽略文件中的重复行,一般与sort命令结合使用 Demo

  • uniq

    去除重复行

  • uniq

    uniq 命令 命令简介 uniq命令可以用于过滤或者输出重复行

  • # Linux中的管道命令(四)

    uniq uniq程序查找连续重复的行,一般用于有序数据的查重。 下面是fruit文件的内容: uniq程序在没有...

  • linux uniq的使用

    错误的uniq用法 如果1.log 内容为如下所示 经过uniq处理后 为什么uniq没有剔除相同的行 按照常规想...

  • sort命令查找重复行/查找非重复行/去除重复行/重复行统计

    去除重复行 sort file |uniq 查找非重复行 sort file |uniq -u 查找重复行 sor...

网友评论

      本文标题:uniq

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