home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / awk / fields.awk < prev    next >
Encoding:
Text File  |  1990-02-08  |  107 b   |  7 lines

  1. # Print a listing of line numbers
  2. # followed by number of fields per line.
  3.  
  4. {
  5.         print NR, NF
  6. }
  7.