_ _ ___ | |__ __ _ _______ | |_ / _ \| '_ \ / _` |_ / _ \| __| | (_) | | | | (_| |/ / (_) | |_ \___/|_| |_|\__,_/___\___/ \__|
| ohazot | docs | links | dev | conf | txt |
| es | en (only, es pending / solamente en, es pendiente) |
| mdoc file |
| search |
paste —
join lines
SYNOPSIS
| - file can be stdin (-). |
| - file is required on OpenBSD. |
| - file is not required on Slackware. |
| - paste writes to stdout. |
OPTIONS
| -s | : paste in command line order. |
| -d LIST | : use the specified character(s) as delimiters. |
EXAMPLES
OpenBSD
$ cat test.log 1 2 3 $ paste -s -d "+" test.log 1+2+3
cat test.log | paste -s -d + 1+2+3
TODO
| - Translate to Spanish. |
SEE ALSO
| text_processing, openbsd, slackware |
| OpenBSD manpages: paste(1) |
HISTORY
| 2025-10-03 | : Created. |