paste man page on OpenBSD

Man page or keyword search:  
man Server   11362 pages
apropos Keyword Search (all sections)
Output format
OpenBSD logo
[printable version]

PASTE(1)		   OpenBSD Reference Manual		      PASTE(1)

NAME
     paste - merge corresponding or subsequent lines of files

SYNOPSIS
     paste [-s] [-d list] file ...

DESCRIPTION
     The paste utility concatenates the corresponding lines of the given input
     files, replacing all but the last file's newline characters with a single
     tab character, and writes the resulting lines to standard output.	If
     end-of-file is reached on an input file while other input files still
     contain data, the file is treated as if it were an endless source of
     empty lines.

     The options are as follows:

     -d list
	     Use one or more of the provided characters to replace the newline
	     characters instead of the default tab.  The characters in list
	     are used circularly, i.e., when list is exhausted the first
	     character from list is reused.  This continues until a line from
	     the last input file (in default operation) or the last line in
	     each file (using the -s option) is displayed, at which time paste
	     begins selecting characters from the beginning of list again.

	     The following special characters can also be used in list:

	     \n	   newline character
	     \t	   tab character
	     \\	   backslash character
	     \0	   empty string (not a null character)

	     Any other character preceded by a backslash is equivalent to the
	     character itself.

     -s	     Concatenate all of the lines of each separate input file in
	     command line order.  The newline character of every line except
	     the last line in each input file is replaced with the tab
	     character, unless otherwise specified by the -d option.

     If ``-'' is specified for one or more of the input files, the standard
     input is used; standard input is read one line at a time, circularly, for
     each instance of ``-''.

EXIT STATUS
     The paste utility exits 0 on success, and >0 if an error occurs.

EXAMPLES
     List the files in the current directory in three columns:

	   $ ls | paste - - -

     Combine pairs of lines from file into single lines:

	   $ paste -s -d '\t\n' file

     Number the lines in file, similar to `cat -n':

	   $ sed = file | paste -s -d '\t\n' - -

     Create a colon-separated list of directories named bin, suitable for use
     in the PATH environment variable:

	   $ find / -name bin -type d | paste -s -d : -

SEE ALSO
     cut(1)

STANDARDS
     The paste utility is compliant with the IEEE Std 1003.1-2008 (``POSIX'')
     specification.

OpenBSD 4.9		       September 3, 2010		   OpenBSD 4.9
[top]

List of man pages available for OpenBSD

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net