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
Proxy Information
- Original URL
- gemini://freeshell.de/tldr/paste.gmi
- Status Code
- Success (20)
- Meta
text/gemini;lang=en-GB
- Capsule Response Time
- 104.697659 milliseconds
- Gemini-to-HTML Time
- 0.385435 milliseconds
This content has been proxied by September (ba2dc).