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
/
rstest1.awk
blob: 3eb88366cd6df767ec5773c912276c38d92339a2 (
plain
)
1
2
3
4
5
6
7
BEGIN
{
RS
=
""
FS
=
":"
s
=
"a:b
\n
c:d"
print
split
(
s
,
a
)
print
length
(
a
[
2
])
}