home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / 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.