xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
nlfldsep.awk
(revision 8aafd47d0dbabbca4365c9565fbe0e051e7346dd)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
BEGIN
{
RS
=
"A"
}
2
{
print
NF
;
for
(
i
=
1
;
i
<=
NF
;
i
++)
print
$i
;
print
""
}
3