TEE.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:
操作系统开发
开发平台:
C/C++
- TEE(1) Minix Programmer's Manual TEE(1)
- NAME
- tee - divert stdin to a file
- SYNOPSIS
- tee [-ai] file ...
- OPTIONS
- -a Append to the files, rather than overwriting
- -i Ignore interrupts
- EXAMPLES
- cat file1 file2 | tee x
- # Save and display two files
- pr file | tee x | lpr
- # Save the output of pr on x
- DESCRIPTION
- Tee copies stdin to standard output. It also makes copies on all the
- files listed as arguments.
- SEE ALSO
- cat(1).
- 1