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

  1. # delimit multiple line records and print the number of fields in each
  2.  
  3. BEGIN { RS = "" }
  4. { print NF, length($0), "----------------";print $0 }
  5. END { print NR }
  6.  
  7.