1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 10:46:00 +02:00
tldr/pages/common/join.md

20 lines
415 B
Markdown
Raw Normal View History

2018-09-02 19:23:21 +05:30
# join
> Join lines of two sorted files on a common field.
- Join two files on the first (default) field:
`join {{file1}} {{file2}}`
2019-10-23 18:46:01 +03:00
- Join two files using a comma (instead of space) as a field separator:
`join -t ',' {{file1}} {{file2}}`
2018-09-02 19:23:21 +05:30
- 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}}`