xref: /netbsd-src/external/historical/nawk/dist/testdir/t.split4 (revision 4d342c046e3288fb5a1edcd33cfec48c41c80664)
1{ a = $0 " " $0 " " $0 " " 123
2  n = split (a, x, /[ \t][ \t]*/)
3  print n, x[1], x[2], x[3], x[4]
4}
5