awk/testdir/t.for1

10 lines
68 B
Plaintext

{
i = 1
for (;;) {
if (i > NF)
next
print i, $i
i++
}
}