awk/testdir/t.incr2

9 lines
93 B
Plaintext

{ s = 0
for (i=1; i <= NF; )
if ($(i) ~ /^[0-9]+$/)
s += $(i++)
else
i++
print s
}