UNIQ.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. UNIQ(1)                   Minix Programmer's Manual                    UNIQ(1)
  2. NAME
  3.      uniq - delete consecutive identical lines in a file
  4. SYNOPSIS
  5.      uniq [-cdu] [-n] [+n] [input [output]]
  6. OPTIONS
  7.      -c   Give count of identical lines in the input
  8.      -d   Only duplicate lines are written to output
  9.      -u   Only unique lines are written to output
  10.      -n   Skip the first n columns when matching
  11.      +n   Skip the first n fields when matching
  12. EXAMPLES
  13.      uniq +2 file        # Ignore first 2 fields when comparing
  14.      uniq -d inf outf    # Write duplicate lines to outf
  15. DESCRIPTION
  16.      Uniq examines a file for consecutive lines that are identical.   All  but
  17.      duplicate entries are deleted, and the file is written to output.  The +n
  18.      option skips the first n fields, where a field is defined  as  a  run  of
  19.      characters  separated  by  white  space.  The -n option skips the first n
  20.      spaces.  Fields are skipped first.
  21. SEE ALSO
  22.      sort(1).
  23.                                                                              1