cat.1 837 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. CAT(1) "fases core"
  2. # NAME
  3. cat - concatenate files to stdout
  4. # SYNOPSIS
  5. *cat* [*-u*] [*file*] ...
  6. # DESCRIPTION
  7. Concatenate files to standard output (stdout).
  8. With no file or when file is -, read and concatenate standard input
  9. to standard output.
  10. *-u*
  11. Print unbuffered.
  12. # EXAMPLES
  13. *cat foobar*
  14. Output foobar's contents to standard output.
  15. *cat*
  16. Output standard input to standard output.
  17. *cat -u hello.c*
  18. Output hello.c's contents unbuffered to standard output.
  19. *cat foo bar baz*
  20. Output foo's contents, then bar's, then baz's to standard output.
  21. # AUTHOR
  22. Originally written by Ferass EL HAFIDI as part of the fases
  23. project. Part of the code is written by
  24. Leah Rowe.
  25. Source code is at http://git.vitali64.duckdns.org/utils/fases.git.
  26. # COPYRIGHT
  27. Copyright (C) 2022 Ferass EL HAFIDI
  28. Copyright (C) 2022 Leah Rowe