index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
nlfldsep.awk
blob: 4fac81da30dea7884dcbef54868f07520443d99c (
plain
)
1
2
BEGIN
{
RS
=
"A"
}
{
print
NF
;
for
(
i
=
1
;
i
<=
NF
;
i
++)
print
$i
;
print
""
}