Make ng_fec compilable into the kernel and add it to the LINTs.
[dragonfly.git] / usr.bin / join / join.1
1 .\" Copyright (c) 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the Institute of Electrical and Electronics Engineers, Inc.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\"    must display the following acknowledgement:
17 .\"     This product includes software developed by the University of
18 .\"     California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\"     @(#)join.1      8.3 (Berkeley) 4/28/95
36 .\" $FreeBSD: src/usr.bin/join/join.1,v 1.3.2.5 2003/02/24 23:04:39 trhodes Exp $
37 .\"
38 .Dd April 18, 2002
39 .Dt JOIN 1
40 .Os
41 .Sh NAME
42 .Nm join
43 .Nd relational database operator
44 .Sh SYNOPSIS
45 .Nm
46 .Oo
47 .Fl a Ar file_number | Fl v Ar file_number
48 .Oc
49 .Op Fl e Ar string
50 .Op Fl j Ar fileno field
51 .Op Fl o Ar list
52 .Op Fl t Ar char
53 .Op Fl \&1 Ar field
54 .Op Fl \&2 Ar field
55 .Ar file1
56 .Ar file2
57 .Sh DESCRIPTION
58 The
59 .Nm
60 utility performs an
61 .Dq equality join
62 on the specified files
63 and writes the result to the standard output.
64 The
65 .Dq join field
66 is the field in each file by which the files are compared.
67 The first field in each line is used by default.
68 There is one line in the output for each pair of lines in
69 .Ar file1
70 and
71 .Ar file2
72 which have identical join fields.
73 Each output line consists of the join field, the remaining fields from
74 .Ar file1
75 and then the remaining fields from
76 .Ar file2 .
77 .Pp
78 The default field separators are tab and space characters.
79 In this case, multiple tabs and spaces count as a single field separator,
80 and leading tabs and spaces are ignored.
81 The default output field separator is a single space character.
82 .Pp
83 Many of the options use file and field numbers.
84 Both file numbers and field numbers are 1 based, i.e. the first file on
85 the command line is file number 1 and the first field is field number 1.
86 The following options are available:
87 .Bl -tag -width indent
88 .It Fl a Ar file_number
89 In addition to the default output, produce a line for each unpairable
90 line in file
91 .Ar file_number .
92 .It Fl e Ar string
93 Replace empty output fields with
94 .Ar string .
95 .It Fl o Ar list
96 The
97 .Fl o
98 option specifies the fields that will be output from each file for
99 each line with matching join fields.
100 Each element of
101 .Ar list
102 has the either the form
103 .Ql file_number.field ,
104 where
105 .Ar file_number
106 is a file number and
107 .Ar field
108 is a field number, or the form
109 .Ql 0
110 .Pq zero ,
111 representing the join field.
112 The elements of list must be either comma
113 .Pq Ql \&,
114 or whitespace separated.
115 (The latter requires quoting to protect it from the shell, or, a simpler
116 approach is to use multiple
117 .Fl o
118 options.)
119 .It Fl t Ar char
120 Use character
121 .Ar char
122 as a field delimiter for both input and output.
123 Every occurrence of
124 .Ar char
125 in a line is significant.
126 .It Fl v Ar file_number
127 Do not display the default output, but display a line for each unpairable
128 line in file
129 .Ar file_number .
130 The options
131 .Fl v Ar 1
132 and
133 .Fl v Ar 2
134 may be specified at the same time.
135 .It Fl 1 Ar field
136 Join on the
137 .Ar field Ns 'th
138 field of file 1.
139 .It Fl 2 Ar field
140 Join on the
141 .Ar field Ns 'th
142 field of file 2.
143 .El
144 .Pp
145 When the default field delimiter characters are used, the files to be joined
146 should be ordered in the collating sequence of
147 .Xr sort 1 ,
148 using the
149 .Fl b
150 option, on the fields on which they are to be joined, otherwise
151 .Nm
152 may not report all field matches.
153 When the field delimiter characters are specified by the
154 .Fl t
155 option, the collating sequence should be the same as
156 .Xr sort 1
157 without the
158 .Fl b
159 option.
160 .Pp
161 If one of the arguments
162 .Ar file1
163 or
164 .Ar file2
165 is
166 .Dq - ,
167 the standard input is used.
168 .Sh EXIT STATUS
169 .Ex -std
170 .Sh COMPATIBILITY
171 For compatibility with historic versions of
172 .Nm ,
173 the following options are available:
174 .Bl -tag -width indent
175 .It Fl a
176 In addition to the default output, produce a line for each unpairable line
177 in both file 1 and file 2.
178 .It Fl j1 Ar field
179 Join on the
180 .Ar field Ns 'th
181 field of file 1.
182 .It Fl j2 Ar field
183 Join on the
184 .Ar field Ns 'th
185 field of file 2.
186 .It Fl j Ar field
187 Join on the
188 .Ar field Ns 'th
189 field of both file 1 and file 2.
190 .It Fl o Ar list ...
191 Historical implementations of
192 .Nm
193 permitted multiple arguments to the
194 .Fl o
195 option.
196 These arguments were of the form
197 .Ql file_number.field_number
198 as described
199 for the current
200 .Fl o
201 option.
202 This has obvious difficulties in the presence of files named
203 .Ql 1.2 .
204 .El
205 .Pp
206 These options are available only so historic shellscripts don't require
207 modification and should not be used.
208 .Sh SEE ALSO
209 .Xr awk 1 ,
210 .Xr comm 1 ,
211 .Xr paste 1 ,
212 .Xr sort 1 ,
213 .Xr uniq 1
214 .Sh STANDARDS
215 The
216 .Nm
217 command conforms to
218 .St -p1003.1-2001 .