join - relational database operator
join [-a file_number | -v file_number] [ -e string]
[-j file_number field] [-o list] [-t char]
[-1 field] [-2 field] file1 file2
The join(1) utility performs an "equality join" on the specified files and writes the result to the standard output. The "join field" is the field in each file by which the files are compared. The first field in each line is used by default. There is one line in the output for each pair of lines in file1 and file2 that have identical join fields. Each output line consists of the join field, the remaining fields from file1, and the remaining fields from file2.
The default field separators are tab and space characters. In this case, multiple tabs and spaces count as a single field separator, and leading tabs and spaces are ignored. The default output field separator is a single space character.
Many of the options use file and field numbers. Both file numbers and field numbers are 1-based; that is, the first file on the command line is file number 1 and the first field is field number 1.
The following options are available:
When the default field delimiter characters are used, the files to be joined should be ordered in the collating sequence of sort(1), using the -b option, on the fields on which they are to be joined. Otherwise, join(1) might not report all field matches. When the field delimiter characters are specified by the -t option, the collating sequence should be the same as sort(1) without the -b option.
If one of the arguments file1 or file2 is "-", the standard input is used.
The join(1) utility exits 0 on success, and >0 if an error occurs.
For compatibility with historic versions of join(1), the following options are available:
These options are available only so historic shell scripts do not require modification and should not be used.
awk(1)
comm(1)
cut(1)
paste(1)
sort(1)
uniq(1)