awk/testdir/t.fun4

10 lines
100 B
Plaintext
Raw Permalink Normal View History

2019-06-23 09:13:57 +00:00
function f(a, n) {
for (i=1; i <= n; i++)
print " " a[i]
}
{ print
n = split($0, x)
f(x, n)
}