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
/
uparrfs.awk
blob: 85905240208a2d87333deb672d7e67c230180bac (
plain
)
1
2
3
4
5
6
7
8
BEGIN
{
FS
=
"(^x+)|( +)"
}
{
for
(
i
=
1
;
i
<=
NF
;
i
++)
printf
"-->%s<--
\n
"
,
$i
}