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

操作系统开发

开发平台:

WINDOWS

  1. CAT(1)                    Minix Programmer's Manual                     CAT(1)
  2. NAME
  3.      cat - concatenate files and write them to stdout
  4. SYNOPSIS
  5.      cat [-u] [file] ...
  6. OPTIONS
  7.      -u   Unbuffered output
  8. EXAMPLES
  9.      cat file            # Display file on the terminal
  10.      cat file1 file2 | lpr
  11.                          # Concatenate 2 files and print result
  12. DESCRIPTION
  13.      Cat concatenates its input files and copies the result to stdout.  If  no
  14.      input  file  is named, or - is encountered as a file name, standard input
  15.      is used.  Output is buffered in 512 byte blocks unless  the  -u  flag  is
  16.      given.   If  you  just want to copy a file, cp should be used since it is
  17.      faster.
  18. SEE ALSO
  19.      cp(1).
  20.                                                                              1