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

操作系统开发

开发平台:

WINDOWS

  1. .TH PASTE 1
  2. .SH NAME
  3. paste - paste multiple files together
  4. .SH SYNOPSIS
  5. fBpastefR [fB-sfR]fR [fB-dfI listfR] fIfile...fR
  6. .br
  7. .de FL
  8. .TP
  9. \fB\$1\fR
  10. \$2
  11. ..
  12. .de EX
  13. .TP 20
  14. \fB\$1\fR
  15. # \$2
  16. ..
  17. .SH OPTIONS
  18. .FL "-d" "Set delimiter used to separate columns to fIlistfR.
  19. .FL "-s" "Print files sequentially, file fIkfR on line fIkfR.
  20. .SH EXAMPLES
  21. .EX "paste file1 file2" "Print fIfile1fR in col 1, fIfile2fR in col 2"
  22. .EX "paste -s f1 f2" "Print fIf1fR on line 1 and fIf2fR on line 2"
  23. .EX "paste -d : file1 file2" "Print the lines separated by a colon"
  24. .SH DESCRIPTION
  25. .PP
  26. fIPastefR concatenates corresponding lines of the given input files
  27. and writes them to standard output. The lines of the different files
  28. are separated by the delimiters given with the option -sfR. If
  29. no list is given, a tab is substituted for every linefeed, except the last one.
  30. If end-of-file is hit on an input file, subsequent lines are empty.
  31. Suppose a set of fIkfR files each has one word per line.  
  32. Then the fIpastefR output will have fIkfR columns, 
  33. with the contents of file fIjfR in column fIjfR.  
  34. If the fB-sfR flag is given, then the first
  35. file is on line 1, the second file on line 2, etc.  
  36. In effect, fB-sfR turns the output sideways.
  37. .PP
  38. If a list of delimiters is given, they are used in turn.  The C escape
  39. sequences \n, \t, \\, and \0 are used for linefeed, tab, backslash, and
  40. the null string, respectively.