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
/
nfloop.awk
blob: c37700ac48f293726edb5136b03a7df6c00551c8 (
plain
)
1
2
3
4
5
6
7
8
BEGIN
{
$0
=
"aaa"
NF
=
10
for
(
j
=
2
;
j
<=
NF
;
++
j
)
{
$j
=
"_"
}
print
}