SORT.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. SORT(1)                   Minix Programmer's Manual                    SORT(1)
  2. NAME
  3.      sort - sort a file of ASCII lines
  4. SYNOPSIS
  5.      sort [-bcdfimnru] [-tc]  [-o name] [+pos1] [-pos2] file ...
  6. OPTIONS
  7.      -b   Skip leading blanks when making comparisons
  8.      -c   Check to see if a file is sorted
  9.      -d   Dictionary order: ignore punctuation
  10.      -f   Fold upper case onto lower case
  11.      -i   Ignore nonASCII characters
  12.      -m   Merge presorted files
  13.      -n   Numeric sort order
  14.      -o   Next argument is output file
  15.      -r   Reverse the sort order
  16.      -t   Following character is field separator
  17.      -u   Unique mode (delete duplicate lines)
  18. EXAMPLES
  19.      sort -nr file       # Sort keys numerically, reversed
  20.      sort +2 -4 file     # Sort using fields 2 and 3 as key
  21.      sort +2 -t: -o out  # Field separator is :
  22.      sort +.3 -.6        # Characters 3 through 5 form the key
  23. DESCRIPTION
  24.      Sort sorts one or more files.   If  no  files  are  specified,  stdin  is
  25.      sorted.   Output  is  written on standard output, unless -o is specified.
  26.      The options +pos1 -pos2 use only fields pos1 up to but not including pos2
  27.      as  the  sort  key,  where a field is a string of characters delimited by
  28.      spaces and tabs, unless a different field delimiter is specified with -t.
  29.      Both  pos1  and pos2 have the form m.n where m tells the number of fields
  30.      and n tells the number of characters.  Either m or n may be omitted.
  31.                                                                              1
  32. SORT(1)                   Minix Programmer's Manual                    SORT(1)
  33. SEE ALSO
  34.      comm(1), grep(1), uniq(1).
  35.                                                                              2