summaryrefslogtreecommitdiff
path: root/test/split_after_fpat.awk
blob: 7e7cfd993261905268160e57a54d635b310b9a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
BEGIN { FPAT = "\"[^\"]*\"" }

{ print $1 }

END { f("hi there") }

function f (p,   a, n, i)
{
        n = split(p,a)
        print n ; for (i=1; i<=n; i++) print a[i]
}