4.3BSD-Reno/share/man/cat1/paste.0

Compare this file to the similar file:
Show the results in this format:

PASTE(1)		    UNIX Reference Manual		      PASTE(1)

NNAAMMEE
     ppaassttee - merge corresponding or subsequent lines of files

SSYYNNOOPPSSIISS
     ppaassttee [--ss] [--dd _l_i_s_t] _f_i_l_e ...

DDEESSCCRRIIPPTTIIOONN
     The ppaassttee 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 emp-
     ty lines.

     The options are as follows:

     --dd_l_i_s_t    Use one or more of the provided characters to replace the
	       newline characters instead of the default tab.  The characters
	       in _l_i_s_t are used circularly, i.e., when _l_i_s_t is exhausted the
	       first character from _l_i_s_t 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 ppaassttee begins selecting characters from the beginning
	       of _l_i_s_t 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.

     --ss        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 char-
	       acter, 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 ``-''.

     The ppaassttee utility exits 0 on success, and >0 if an error occurs.

SSEEEE AALLSSOO
     cut(1)

SSTTAANNDDAARRDDSS
     The ppaassttee function is expected to be POSIX 1003.2 compatible.