aboutsummaryrefslogblamecommitdiff
path: root/contrib/one-true-awk/bugs-fixed/split-fs-from-array.awk
blob: fce1607c2a972afbcad9f0c989f6f76a442010f4 (plain) (tree)
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])
}