1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/join.md
2021-03-30 15:31:19 +02:00

20 lines
535 B
Markdown

# join
> Join lines of two sorted files on a common field.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/join-invocation.html>.
- Join two files on the first (default) field:
`join {{file1}} {{file2}}`
- Join two files using a comma (instead of a space) as the field separator:
`join -t {{','}} {{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}}`