home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320.zip / FIELDS.AWK < prev    next >
Text File  |  1990-02-08  |  107b  |  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.