WC.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:
操作系统开发
开发平台:
C/C++
- WC(1) Minix Programmer's Manual WC(1)
- NAME
- wc - count characters, words, and lines in a file
- SYNOPSIS
- wc [-clw] file ...
- OPTIONS
- -c Print character count
- -l Print line count
- -w Print word count
- EXAMPLES
- wc file1 file2 # Print all three counts for both files
- wc -l file # Print line count only
- DESCRIPTION
- Wc reads each argument and computes the number of characters, words and
- lines it contains. A word is delimited by white space (space, tab, or
- line feed). If no flags are present, all three counts are printed.
- 1