awk/testdir/t.for2

8 lines
61 B
Plaintext

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