join: add stdin example (#8416)

* join: add '-' file from standard input
This commit is contained in:
yunlang
2022-10-02 21:51:08 +08:00
committed by GitHub
parent e89c494850
commit 8b57a42aac

View File

@@ -18,3 +18,7 @@
- Produce a line for each unpairable line for file1:
`join -a {{1}} {{file1}} {{file2}}`
- Join a file from stdin:
`cat {{path/to/file1}} | join - {{path/to/file2}}`