PASTE.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. PASTE(1)                  Minix Programmer's Manual                   PASTE(1)
  2. NAME
  3.      paste - paste multiple files together
  4. SYNOPSIS
  5.      paste [-s] [-d list] file...
  6. OPTIONS
  7.      -d   Set delimiter used to separate columns to list.
  8.      -s   Print files sequentially, file k on line k.
  9. EXAMPLES
  10.      paste file1 file2   # Print file1 in col 1, file2 in col 2
  11.      paste -s f1 f2      # Print f1 on line 1 and f2 on line 2
  12.      paste -d : file1 file2
  13.                          # Print the lines separated by a colon
  14. DESCRIPTION
  15.      Paste concatenates corresponding lines  of  the  given  input  files  and
  16.      writes  them  to  standard  output.  The lines of the different files are
  17.      separated by the delimiters given with the  option  -s.  If  no  list  is
  18.      given,  a tab is substituted for every linefeed, except the last one.  If
  19.      end-of-file is hit on an input file, subsequent lines are empty.  Suppose
  20.      a  set  of k files each has one word per line. Then the paste output will
  21.      have k columns, with the contents of file j in column j. If the  -s  flag
  22.      is  given,  then  the first file is on line 1, the second file on line 2,
  23.      etc. In effect, -s turns the output sideways.
  24.      If a list of delimiters is given, they are used in turn.   The  C  escape
  25.      sequences  n,  t, \, and  are used for linefeed, tab, backslash, and
  26.      the null string, respectively.
  27.                                                                              1