home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320.zip / WC.AWK < prev    next >
Text File  |  1990-02-08  |  113b  |  4 lines

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