home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / awk / wc.awk < prev    next >
Encoding:
Text File  |  1990-02-08  |  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.