mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-28 15:44:54 +02:00
join: improve formatting
This commit is contained in:
parent
abbc8917de
commit
ca75a21db8
1 changed files with 3 additions and 3 deletions
|
@ -8,12 +8,12 @@
|
||||||
|
|
||||||
- Join two files using a comma (instead of space) as a field separator:
|
- Join two files using a comma (instead of space) as a field separator:
|
||||||
|
|
||||||
`join -t ',' {{file1}} {{file2}}`
|
`join -t {{','}} {{file1}} {{file2}}`
|
||||||
|
|
||||||
- Join field3 of file1 with field1 of file2:
|
- Join field3 of file1 with field1 of file2:
|
||||||
|
|
||||||
`join -1 3 -2 1 {{file1}} {{file2}}`
|
`join -1 {{3}} -2 {{1}} {{file1}} {{file2}}`
|
||||||
|
|
||||||
- Produce a line for each unpairable line for file1:
|
- Produce a line for each unpairable line for file1:
|
||||||
|
|
||||||
`join -a 1 {{file1}} {{file2}}`
|
`join -a {{1}} {{file1}} {{file2}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue