(root)/
gawk-5.2.2/
test/
splitarr.awk
BEGIN {
	a[1] = "elephantie"
	a[2] = "e"
	print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
}