mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-15 05:55:57 +02:00
join: add page (#2288)
This commit is contained in:
parent
c29f15614e
commit
e97efdff06
1 changed files with 15 additions and 0 deletions
15
pages/common/join.md
Normal file
15
pages/common/join.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue