shithub: trueawk

ref: b8937db63bc24a4989e6e76d384e56286c17facf
dir: /bugs-fixed/split-fs-from-array.awk/

View raw version
BEGIN {
        a[1] = "elephantie"
        a[2] = "e"
        print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
}