home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / GNUTUE.ZIP / man / paste.man < prev    next >
Text File  |  1992-07-18  |  1KB  |  27 lines

  1. NAME
  2.      paste - merge lines of files
  3.  
  4. SYNOPSIS
  5.      paste [-s] [-d delim-list] [--serial] [--delimiters=delim-list] [file...]
  6.  
  7. DESCRIPTION
  8.      This manual page documents the GNU version of paste.  paste prints  lines
  9.      consisting  of  sequentially  corresponding  lines  of  each  given file,
  10.      separated by TABs, terminated by a newline.  If no files are  given,  the
  11.      standard input is used.  A file name of `-' means standard input.
  12.  
  13.      OPTIONS
  14.  
  15.      -s, --serial
  16.           Paste the lines of one file at a time rather than one line from each
  17.           file.
  18.  
  19.      -d, --delimiters delim-list
  20.           Consecutively use the characters in delim-list  instead  of  TAB  to
  21.           separate merged lines.  When delim-list is exhausted, start again at
  22.           its beginning.
  23.  
  24.      The long-named options can be introduced with `+' as well  as  `--',  for
  25.      compatibility with previous releases.  Eventually support for `+' will be
  26.      removed, because it is incompatible with the POSIX.2 standard.
  27.