home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / cug / softt-5.lbr / COMM.DQC / COMM.DOC
Encoding:
Text File  |  1984-07-05  |  1.4 KB  |  83 lines

  1. .bp 1
  2. .in 0
  3. .he 'COMM (1)'1/11/79'COMM (1)'
  4. .fo ''-#-'
  5. .fi
  6. NAME
  7. .br
  8. .in 7
  9. comm - print lines common to two files
  10. .sp 1
  11. .in
  12. SYNOPSIS
  13. .br
  14. .in 7
  15. comm
  16. [-123] file1 file2
  17. .sp 1
  18. .in
  19. DESCRIPTION
  20. .br
  21. .in 7
  22. Comm
  23. reads
  24. file1
  25. and
  26. file2,
  27. which should be sorted, and produces a three column output:
  28. lines only in
  29. file1,
  30. lines only in
  31. file2,
  32. and lines in both files.
  33. The filename '-' means the standard input.
  34. If there is only one file argument,
  35. file2
  36. refers to the standard input.
  37.  
  38. The optional arguments -1, -2, and -3 specify the printing of
  39. only the corresponding column.
  40. Thus
  41. comm -3
  42. prints only the lines common to both files, and
  43. comm -12
  44. prints lines which are in either file, but not in both.
  45. The default is -123.
  46. .sp 1
  47. .in
  48. FILES
  49. .br
  50. .in 7
  51. None
  52. .sp 1
  53. .in
  54. SEE ALSO
  55. .br
  56. .in 7
  57. diff
  58. .sp 1
  59. .in
  60. DIAGNOSTICS
  61. .br
  62. .in 7
  63. A message is printed if an input file cannot be opened.
  64. .sp 1
  65. .in
  66. AUTHORS
  67. .br
  68. .in 7
  69. .sp 1
  70. Debbie Scherrer (Lawrence Berkeley Laboratory)
  71. .sp 1
  72. .in
  73. BUGS
  74. .br
  75. .in 7
  76. The flags used by this tool are the reverse of those used by the
  77. Unix 'comm'.  In Unix, the flags 1, 2, and 3
  78. .bd
  79. suppress
  80. printing of the corresponding column.
  81. Kernighan, on page 126 of 'Software Tools' suggests the
  82. version used above.
  83.