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

操作系统开发

开发平台:

C/C++

  1. JOIN(1)                   Minix Programmer's Manual                    JOIN(1)
  2. NAME
  3.      join - relational database operator
  4. SYNOPSIS
  5.      join [-an] [-e s] [-o list] [-tc] file1 file2
  6. DESCRIPTION
  7.      Join forms, on the standard output, a join of the two relations specified
  8.      by  the lines of file1 and file2.  If file1 is `-', the standard input is
  9.      used.
  10.      File1 and file2 must be sorted in increasing ASCII collating sequence  on
  11.      the  fields  on  which  they are to be joined, normally the first in each
  12.      line.
  13.      There is one line in the output for each pair of lines in file1 and file2
  14.      that  have  identical  join fields.  The output line normally consists of
  15.      the common field, then the rest of the line from file1, then the rest  of
  16.      the line from file2.
  17.      Fields are normally separated by blank, tab or newline.   In  this  case,
  18.      multiple separators count as one, and leading separators are discarded.
  19.      These options are recognized:
  20.      -an  In addition to the normal output, produce a line for each unpairable
  21.           line in file n, where n is 1 or 2.
  22.      -e s Replace empty output fields by string s.
  23.      -o list
  24.           Each output line  comprises  the  fields  specified  in  list,  each
  25.           element of which has the form n.m, where n is a file number and m is
  26.           a field number.
  27.      -tc  Use character c as a separator (tab character).  Every appearance of
  28.           c in a line is significant.
  29. SEE ALSO
  30.      sort(1), comm(1), awk(1).
  31. BUGS
  32.      With default field separation, the collating sequence is that of sort -b;
  33.      with -t, the sequence is that of a plain sort.
  34.      The conventions of join, sort, comm, uniq, look  and  awk(1)  are  wildly
  35.      incongruous.
  36.                                April 29, 1985                                1