Examples (5)
Join two files on the first (default) field
join path/to/file1 path/to/file2Join two files using a comma (instead of a space) as the field separator
join -t ',' path/to/file1 path/to/file2Join field3 of file1 with field1 of file2
join -1 3 -2 1 path/to/file1 path/to/file2Produce a line for each unpairable line for file1
join -a 1 path/to/file1 path/to/file2made by @shridhargupta | data from tldr-pages