-- Leo's gemini proxy

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

-- Connected

-- Sending request

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

paste


> Merge lines of files.

More information.


Join all the lines into a single line, using TAB as delimiter:

paste -s {file}

Join all the lines into a single line, using the specified delimiter:

paste -s -d {delimiter} {file}

Merge two files side by side, each in its column, using TAB as delimiter:

paste {file1} {file2}

Merge two files side by side, each in its column, using the specified delimiter:

paste -d {delimiter} {file1} {file2}

Merge two files, with lines added alternatively:

paste -d '\n' {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 Tue May 21 07:52:24 2024