-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

join


> Join lines of two sorted files on a common field.

More information.


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}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 00:15:57 2024