home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / WC.AWK < prev    next >
Encoding:
Text File  |  1990-02-07  |  113 b   |  4 lines

  1. # word count -- prints lines, words, characters
  2.  
  3. { nf += NF; nc += length($0) + 2 }; END { print NR, nf, nc }
  4.