summaryrefslogtreecommitdiff
path: root/test/splitarr.awk
blob: c1185a4d805cc6a072b6bb2963cd2aaa2944434e (plain)
1
2
3
4
5
BEGIN {
	a[1] = "elephantie"
	a[2] = "e"
	print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
}