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

操作系统开发

开发平台:

WINDOWS

  1. TEE(1)                    Minix Programmer's Manual                     TEE(1)
  2. NAME
  3.      tee - divert stdin to a file
  4. SYNOPSIS
  5.      tee [-ai] file ...
  6. OPTIONS
  7.      -a   Append to the files, rather than overwriting
  8.      -i   Ignore interrupts
  9. EXAMPLES
  10.      cat file1 file2 | tee x
  11.                          # Save and display two files
  12.      pr file | tee x | lpr
  13.                          # Save the output of pr on x
  14. DESCRIPTION
  15.      Tee copies stdin to standard output.  It also makes  copies  on  all  the
  16.      files listed as arguments.
  17. SEE ALSO
  18.      cat(1).
  19.                                                                              1