PASTE(oh) LOCAL PASTE(oh) paste - join lines SYNOPSIS paste [OPTIONS] file - 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 SEE ALSO text_manipulation(oh) , openbsd(oh) , slackware(oh) - OpenBSD manpages: paste(1) AUTHORS ohazot(oh) | about(oh) | ohazot.com: https://ohazot.com OpenBSD 7.7 linux| Created:2025-10-03|Updated:2025-10-21| PASTE(oh)