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