mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 00:17:56 +01:00
16 lines
307 B
Markdown
16 lines
307 B
Markdown
|
# join
|
||
|
|
||
|
> Join lines of two sorted files on a common field.
|
||
|
|
||
|
- Join two files on the first (default) field:
|
||
|
|
||
|
`join {{file1}} {{file2}}`
|
||
|
|
||
|
- Join field3 of file1 with field1 of file2:
|
||
|
|
||
|
`join -1 3 -2 1 {{file1}} {{file2}}`
|
||
|
|
||
|
- Produce a line for each unpairable line for file1:
|
||
|
|
||
|
`join -a 1 {{file1}} {{file2}}`
|