paste Command Examples

Merge lines of files. More information: https://www.gnu.org/software/coreutils/paste.

paste -s {{path/to/file}}

paste -s -d {{delimiter}} {{path/to/file}}

paste {{path/to/file1}} {{path/to/file2}}

paste -d {{delimiter}} {{path/to/file1}} {{path/to/file2}}

paste -d '\n' {{path/to/file1}} {{path/to/file2}}