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

操作系统开发

开发平台:

WINDOWS

  1. WC(1)                     Minix Programmer's Manual                      WC(1)
  2. NAME
  3.      wc - count characters, words, and lines in a file
  4. SYNOPSIS
  5.      wc [-clw] file ...
  6. OPTIONS
  7.      -c   Print character count
  8.      -l   Print line count
  9.      -w   Print word count
  10. EXAMPLES
  11.      wc file1 file2      # Print all three counts for both files
  12.      wc -l file          # Print line count only
  13. DESCRIPTION
  14.      Wc reads each argument and computes the number of characters,  words  and
  15.      lines  it  contains.   A word is delimited by white space (space, tab, or
  16.      line feed).  If no flags are present, all three counts are printed.
  17.                                                                              1