home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V6 / usr / man / man1 / cat.1 < prev    next >
Encoding:
Text File  |  1975-06-26  |  618 b   |  37 lines

  1. .th CAT I 1/15/73
  2. .sh NAME
  3. cat \*- concatenate and print
  4. .sh SYNOPSIS
  5. .bd cat
  6. file ...
  7. .sh DESCRIPTION
  8. .it Cat
  9. reads each file in sequence
  10. and writes it on the standard output.
  11. Thus
  12. .s3
  13. .bd "   cat file"
  14. .s3
  15. prints the file, and
  16. .s3
  17. .bd "   cat file1 file2 >file3"
  18. .s3
  19. concatenates the first two files and places the result on the third.
  20. .s3
  21. If no input file is given,
  22. or if the argument `\-' is encountered,
  23. .it cat
  24. reads from the standard
  25. input file.
  26. .s3
  27. .sh "SEE ALSO"
  28. pr(I), cp(I)
  29. .sh DIAGNOSTICS
  30. none;
  31. if a file cannot be found it is ignored.
  32. .sh BUGS
  33. .bd "cat x y >x"
  34. and
  35. .bd "cat x y >y"
  36. cause strange results.
  37.