home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compcomp
/
awk
/
mlr.awk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
AWK Script
|
1990-02-08
|
168 b
|
7 lines
# delimit multiple line records and print the number of fields in each
BEGIN { RS = "" }
{ print NF, length($0), "----------------";print $0 }
END { print NR }